-
Notifications
You must be signed in to change notification settings - Fork 0
/
quicksave.sfs
14252 lines (14252 loc) · 258 KB
/
quicksave.sfs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
GAME
{
version = 0.22.0
Title = default (CAREER)
Description = No description available.
Mode = 1
Status = 1
scene = 5
flag = Squad/Flags/default
PARAMETERS
{
FLIGHT
{
CanQuickSave = True
CanQuickLoad = True
CanAutoSave = True
CanUseMap = True
CanSwitchVesselsNear = True
CanSwitchVesselsFar = True
CanTimeWarpHigh = True
CanTimeWarpLow = True
CanEVA = True
CanIVA = True
CanBoard = True
CanRestart = True
CanLeaveToEditor = True
CanLeaveToTrackingStation = True
CanLeaveToSpaceCenter = True
CanLeaveToMainMenu = False
}
EDITOR
{
CanSave = True
CanLoad = True
CanStartNew = True
CanLaunch = True
CanLeaveToSpaceCenter = True
CanLeaveToMainMenu = False
startUpMode = 0
craftFileToLoad =
}
TRACKINGSTATION
{
CanFlyVessel = True
CanAbortVessel = True
CanLeaveToSpaceCenter = True
CanLeaveToMainMenu = False
}
SPACECENTER
{
CanGoInVAB = True
CanGoInSPH = True
CanGoInTrackingStation = True
CanLaunchAtPad = True
CanLaunchAtRunway = True
CanLeaveToMainMenu = True
}
DIFFICULTY
{
MissingCrewsRespawn = True
AllowStockVessels = False
}
}
SCENARIO
{
name = ProgressTracking
scene = 5, 7, 8
Progress
{
FirstLaunch
{
completed = 90.2999999999994
}
FirstCrewToSurvive
{
completed = 227.637442016624
crew
{
crews = 0
}
}
ReachedSpace
{
completed = 1435.92140075591
vessel
{
name = mach 2
flag = Squad/Flags/default
}
crew
{
crews = 0
}
}
Spacewalk
{
completed = 237876886.912155
crew
{
crews = 0
}
}
KSCLanding
{
completed = 243749020.660733
}
Sun
{
reached = 48439.5079681393
Orbit
{
completed = 48439.5079681393
vessel
{
name = mach 2
flag = Squad/Flags/default
}
crew
{
crews = 0
}
}
}
Kerbin
{
reached = 221.717442016623
Flyby
{
completed = 236980997.995109
}
Orbit
{
completed = 214433322.321659
vessel
{
name = Colin's Rocket
flag = Squad/Flags/default
}
crew
{
crews = 1
}
}
Escape
{
completed = 48439.5079681393
}
Landing
{
completed = 701.684496459676
vessel
{
name = Untitled Space Craft
flag = Squad/Flags/default
}
crew
{
crews = 0
}
}
Splashdown
{
completed = 221.717442016623
}
Rendezvous
{
completed = 244351870.254602
}
Docking
{
completed = 244354140.31964
}
SurfaceEVA
{
completed = 244333009.946505
crew
{
crews = 0
}
}
ReturnFromOrbit
{
completed = 244358144.448096
vessel
{
name = docker mk1
flag = Squad/Flags/default
}
crew
{
crews = 0, 5, 6, 7, 8, 9
}
}
ReturnFromSurface
{
completed = 222.837442016623
vessel
{
name = Untitled Space Craft
flag = Squad/Flags/default
}
crew
{
crews = 0
}
}
}
Mun
{
reached = 217615250.236778
Flyby
{
completed = 217615250.236778
}
Orbit
{
completed = 217654889.458634
vessel
{
name = to the moon!
flag = Squad/Flags/default
}
crew
{
crews = 2
}
}
Escape
{
completed = 236746598.971671
}
Landing
{
completed = 243812449.660936
vessel
{
name = to the moon!
flag = Squad/Flags/default
}
crew
{
crews = 3
}
}
SurfaceEVA
{
completed = 243812506.400967
crew
{
crews = 3
}
}
}
Minmus
{
reached = 244775174.895438
Flyby
{
completed = 244775174.895438
}
Orbit
{
completed = 244775824.212182
vessel
{
name = lander mk3
flag = Squad/Flags/default
}
crew
{
crews = 0
}
}
Landing
{
completed = 244876414.827859
vessel
{
name = lander mk3
flag = Squad/Flags/default
}
crew
{
crews = 0
}
}
SurfaceEVA
{
completed = 244896371.383201
crew
{
crews = 0
}
}
}
}
}
SCENARIO
{
name = ResearchAndDevelopment
scene = 5, 6, 7, 8, 9
sci = 16.84308
Tech
{
id = start
state = Available
part = mk1pod
part = liquidEngine
part = solidBooster
part = fuelTankSmall
part = trussPiece1x
part = longAntenna
part = parachuteSingle
}
Tech
{
id = basicRocketry
state = Available
part = fuelTank
part = fuelTankSmallFlat
part = GooExperiment
part = stackDecoupler
}
Tech
{
id = stability
state = Available
part = noseCone
part = winglet
part = radialDecoupler
}
Tech
{
id = generalRocketry
state = Available
part = liquidEngine2
part = sepMotor1
part = solidBooster1-1
}
Tech
{
id = survivability
state = Available
part = liquidEngine3
part = landingLeg1
part = parachuteRadial
}
Tech
{
id = scienceTech
state = Available
part = batteryPack
part = science.module
part = mediumDishAntenna
}
Tech
{
id = advRocketry
state = Available
part = radialLiquidEngine1-2
part = fuelTank.long
}
Tech
{
id = flightControl
state = Available
part = R8winglet
part = Mark1Cockpit
part = probeCoreSphere
part = sasModule
}
Tech
{
id = electrics
state = Available
part = batteryBankMini
part = solarPanels5
part = spotLight1
part = spotLight2
}
Tech
{
id = generalConstruction
state = Available
part = strutConnector
part = launchClamp1
part = radialDecoupler2
part = stackTriCoupler
}
Tech
{
id = heavyRocketry
state = Available
part = liquidEngine2-2
part = fuelTank2-2
}
Tech
{
id = fuelSystems
state = Available
part = liquidEngineMini
part = RCSFuelTank
part = radialRCSTank
part = RCSBlock
part = fuelLine
}
Tech
{
id = heavierRocketry
state = Available
part = engineLargeSkipper
part = fuelTank1-2
}
Tech
{
id = advConstruction
state = Available
part = Mk1FuselageStructural
part = fuelTank4-2
part = decoupler1-2
part = largeAdapter
part = largeAdapter2
part = radialDecoupler1-2
}
Tech
{
id = specializedControl
state = Available
part = Mark1-2Pod
part = asasmodule1-2
part = landerCabinSmall
part = rcsTankRadialLong
part = linearRcs
part = parachuteLarge
}
Tech
{
id = advFlightControl
state = Available
part = winglet3
part = Mark2Cockpit
part = advSasModule
part = probeCoreOcto
}
Tech
{
id = spaceExploration
state = Available
part = ladder1
part = sensorThermometer
}
Tech
{
id = advExploration
state = Available
part = sensorBarometer
part = telescopicLadder
part = telescopicLadderBay
}
Tech
{
id = advElectrics
state = Available
part = ksp.r.largeBatteryPack
part = solarPanels1
part = solarPanels2
part = solarPanels3
part = solarPanels4
}
Tech
{
id = nuclearPropulsion
state = Available
part = nuclearEngine
}
Tech
{
id = landing
state = Available
part = miniLandingLeg
part = SmallGearBay
}
Tech
{
id = precisionEngineering
state = Available
part = microEngine
part = radialEngineMini
part = smallRadialEngine
part = rcsTankMini
part = miniFuelTank
part = toroidalFuelTank
part = stackDecouplerMini
}
Tech
{
id = specializedConstruction
state = Available
part = crewCabin
part = adapterSmallMiniShort
part = adapterSmallMiniTall
part = trussAdapter
part = dockingPort1
part = dockingPort2
part = stackBiCoupler
}
Tech
{
id = aerodynamicSystems
state = Available
part = StandardCtrlSrf
part = airplaneTail
part = smallCtrlSrf
part = sweptWing
part = tailfin
part = JetEngine
part = MK1Fuselage
part = airScoop
}
Tech
{
id = largeControl
state = Available
part = cupola
part = mk2LanderCabin
part = RCSTank1-2
}
Tech
{
id = veryHeavyRocketry
state = Available
part = liquidEngine1-2
part = fuelTank3-2
}
Science
{
id = recovery@KerbinFlew
title = Recovery of a vessel that survived a flight.
dsc = 1
scv = 0
sbv = 5
sci = 6
cap = 6
}
Science
{
id = mysteryGoo@KerbinFlyingLow
title = Mystery Goo™ Observation while flying at Kerbin
dsc = 1
scv = 0.0001356337
sbv = 0.7
sci = 12.59829
cap = 12.6
}
Science
{
id = crewReport@KerbinFlyingLowShores
title = Crew Report while flying over Kerbin's Shores
dsc = 1
scv = 0.002780897
sbv = 0.7
sci = 5.584427
cap = 5.6
}
Science
{
id = crewReport@KerbinFlyingLowGrasslands
title = Crew Report while flying over Kerbin's Grasslands
dsc = 1
scv = 0.140625
sbv = 0.7
sci = 4.8125
cap = 5.6
}
Science
{
id = crewReport@KerbinFlyingHigh
title = Crew Report from Kerbin's upper atmosphere
dsc = 1
scv = 0.01977537
sbv = 0.7
sci = 5.489258
cap = 5.6
}
Science
{
id = crewReport@KerbinFlyingLowHighlands
title = Crew Report while flying over Kerbin's Highlands
dsc = 1
scv = 0.375
sbv = 0.7
sci = 3.5
cap = 5.6
}
Science
{
id = crewReport@KerbinFlyingLowWater
title = Crew Report while flying over Kerbin's Water
dsc = 1
scv = 0.00741584
sbv = 0.7
sci = 5.558471
cap = 5.6
}
Science
{
id = mysteryGoo@KerbinFlyingHigh
title = Mystery Goo™ Observation from Kerbin's upper atmosphere
dsc = 1
scv = 0.006718787
sbv = 0.7
sci = 12.51534
cap = 12.6
}
Science
{
id = crewReport@KerbinInSpaceLow
title = Crew Report while in space near Kerbin
dsc = 1
scv = 0.009887636
sbv = 1
sci = 7.920899
cap = 8
}
Science
{
id = mysteryGoo@KerbinInSpaceLow
title = Mystery Goo™ Observation while in space near Kerbin
dsc = 1
scv = 0.031529
sbv = 1
sci = 17.43248
cap = 18
}
Science
{
id = recovery@KerbinSubOrbited
title = Recovery of a vessel after a sub-orbital flight.
dsc = 1
scv = 3.576278E-06
sbv = 8
sci = 9.599966
cap = 9.6
}
Science
{
id = mysteryGoo@SunInSpaceHigh
title = Mystery Goo™ Observation while in space high over the Sun
dsc = 1
scv = 0.002626901
sbv = 11
sci = 197.4799
cap = 198
}
Science
{
id = crewReport@SunInSpaceHigh
title = Crew Report while in space high over the Sun
dsc = 1
scv = 0.007415771
sbv = 11
sci = 87.34741
cap = 88
}
Science
{
id = crewReport@KerbinInSpaceHigh
title = Crew Report while in space high over Kerbin
dsc = 1
scv = 0.05273438
sbv = 1
sci = 7.578125
cap = 8
}
Science
{
id = mysteryGoo@KerbinInSpaceHigh
title = Mystery Goo™ Observation while in space high over Kerbin
dsc = 1
scv = 0.02315924
sbv = 1
sci = 17.58313
cap = 18
}
Science
{
id = mobileMaterialsLab@KerbinFlyingLow
title = Materials Study while flying at Kerbin
dsc = 1
scv = 0.02191248
sbv = 0.7
sci = 23.96314
cap = 24.5
}
Science
{
id = mobileMaterialsLab@KerbinFlyingHigh
title = Materials Study from Kerbin's upper atmosphere
dsc = 1
scv = 0.5802587
sbv = 0.7
sci = 10.28366
cap = 24.5
}
Science
{
id = mobileMaterialsLab@SunInSpaceHigh
title = Materials Study while in space high over the Sun
dsc = 1
scv = 0.009568331
sbv = 11
sci = 381.3162
cap = 385
}
Science
{
id = mobileMaterialsLab@KerbinInSpaceLow
title = Materials Study while in space near Kerbin
dsc = 1
scv = 0.2154096
sbv = 1
sci = 27.46066
cap = 35
}
Science
{
id = mobileMaterialsLab@KerbinInSpaceHigh
title = Materials Study while in space high over Kerbin
dsc = 1
scv = 0.3870113
sbv = 1
sci = 21.45461
cap = 35
}
Science
{
id = mobileMaterialsLab@MunInSpaceHigh
title = Materials Study while in space high over the Mun
dsc = 1
scv = 0.2923763
sbv = 3
sci = 74.30049
cap = 105
}
Science
{
id = mysteryGoo@MunInSpaceHigh
title = Mystery Goo™ Observation while in space high over the Mun
dsc = 1
scv = 0.1802588
sbv = 3
sci = 44.26603
cap = 54
}
Science
{
id = crewReport@MunInSpaceHigh
title = Crew Report while in space high over the Mun
dsc = 1
scv = 0.05273438
sbv = 3
sci = 22.73438
cap = 24
}
Science
{
id = crewReport@MunInSpaceLow
title = Crew Report while in space near the Mun
dsc = 1
scv = 0.140625
sbv = 3
sci = 20.625
cap = 24
}
Science
{
id = mysteryGoo@MunInSpaceLow
title = Mystery Goo™ Observation while in space near the Mun
dsc = 1
scv = 0.4705076
sbv = 3
sci = 28.59259
cap = 54
}
Science
{
id = mobileMaterialsLab@MunInSpaceLow
title = Materials Study while in space near the Mun
dsc = 1
scv = 0.469885
sbv = 3
sci = 55.66207
cap = 105
}
Science
{
id = evaReport@SunInSpaceHigh
title = EVA Report while in space high over the Sun
dsc = 1
scv = 0.07775997
sbv = 11
sci = 101.4464
cap = 110
}
Science
{
id = evaReport@KerbinFlyingHigh
title = EVA Report from Kerbin's upper atmosphere
dsc = 1
scv = 1
sbv = 0.7
sci = 0
cap = 7
}
Science
{
id = evaReport@KerbinFlyingLowWater
title = EVA Report while flying over Kerbin's Water
dsc = 1
scv = 1
sbv = 0.7
sci = 0
cap = 7
}
Science
{
id = mysteryGoo@MunSrfLandedMidlands
title = Mystery Goo™ Observation from the Mun's Midlands
dsc = 1
scv = 0.04229302
sbv = 4
sci = 68.9549
cap = 72
}
Science
{
id = mobileMaterialsLab@MunSrfLandedMidlands
title = Materials Study from the Mun's Midlands
dsc = 1
scv = 0.1381824
sbv = 4
sci = 120.6545
cap = 140
}
Science
{
id = crewReport@MunSrfLandedMidlands
title = Crew Report from the Mun's Midlands
dsc = 1
scv = 0.001042843
sbv = 4
sci = 31.96663
cap = 32
}
Science
{
id = evaReport@MunInSpaceLowMidlands
title = EVA Report from space just above the Mun's Midlands
dsc = 1
scv = 0.216
sbv = 3
sci = 23.52
cap = 30
}
Science
{
id = surfaceSample@MunSrfLandedMidlands
title = Surface Sample from the Mun's Midlands
dsc = 1
scv = 0.108007
sbv = 4
sci = 142.7189
cap = 160
}
Science
{
id = evaReport@MunSrfLandedMidlands
title = EVA Report from the Mun's Midlands
dsc = 1
scv = 0.216
sbv = 4
sci = 31.36
cap = 40
}
Science
{
id = mysteryGoo@MunSrfLandedEastCrater
title = Mystery Goo™ Observation from the Mun's East Crater
dsc = 1
scv = 0.7777778
sbv = 4
sci = 16
cap = 72
}
Science
{
id = mobileMaterialsLab@MunSrfLandedEastCrater
title = Materials Study from the Mun's East Crater
dsc = 1
scv = 0.8638632
sbv = 4
sci = 19.05916
cap = 140
}
Science
{
id = crewReport@MunSrfLandedEastCrater
title = Crew Report from the Mun's East Crater
dsc = 1
scv = 0.375
sbv = 4
sci = 20
cap = 32
}
Science
{
id = evaReport@MunInSpaceLowEastCrater
title = EVA Report from space just above the Mun's East Crater
dsc = 1
scv = 0.6
sbv = 3
sci = 12
cap = 30
}
Science
{
id = crewReport@KerbinSrfLandedLaunchPad
title = Crew Report from LaunchPad
dsc = 1
scv = 0.375
sbv = 0.3
sci = 1.5
cap = 2.4
}
Science
{
id = temperatureScan@KerbinSrfLandedLaunchPad
title = Temperature Scan from LaunchPad
dsc = 1
scv = 0.52
sbv = 0.3
sci = 1.44
cap = 3
}
Science
{
id = barometerScan@KerbinSrfLandedLaunchPad
title = Atmospheric Pressure Scan from LaunchPad
dsc = 1
scv = 0.4857143
sbv = 0.3
sci = 2.16
cap = 4.2
}
Science
{
id = mysteryGoo@KerbinSrfLandedLaunchPad
title = Mystery Goo™ Observation from LaunchPad
dsc = 1
scv = 0.7777778
sbv = 0.3
sci = 1.2
cap = 5.4
}
Science
{
id = mobileMaterialsLab@KerbinSrfLandedLaunchPad
title = Materials Study from LaunchPad
dsc = 1
scv = 0.8571429
sbv = 0.3
sci = 1.5
cap = 10.5
}
Science
{
id = temperatureScan@KerbinFlyingHigh
title = Temperature Scan from Kerbin's upper atmosphere
dsc = 1
scv = 0.52
sbv = 0.7
sci = 3.36
cap = 7
}
Science
{
id = barometerScan@KerbinFlyingHigh
title = Atmospheric Pressure Scan from Kerbin's upper atmosphere
dsc = 1
scv = 0.4857143
sbv = 0.7
sci = 5.04
cap = 9.8
}
Science
{
id = temperatureScan@KerbinInSpaceLow
title = Temperature Scan while in space near Kerbin
dsc = 1
scv = 0.3060429