| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- # Base
- - type: entity
- id: BaseVariationPass
- parent: BaseGameRule
- abstract: true
- components:
- - type: StationVariationPassRule
- # Actual rules
- - type: entity
- id: BasicPoweredLightVariationPass
- parent: BaseVariationPass
- components:
- - type: PoweredLightVariationPass
- - type: entity
- id: SolidWallRustingVariationPass
- parent: BaseVariationPass
- components:
- - type: WallReplaceVariationPass
- - type: EntityReplaceVariationPass
- entitiesPerReplacementAverage: 50
- entitiesPerReplacementStdDev: 10
- replacements:
- - id: WallSolidRust
- - type: entity
- id: ReinforcedWallRustingVariationPass
- parent: BaseVariationPass
- components:
- - type: ReinforcedWallReplaceVariationPass
- - type: EntityReplaceVariationPass
- entitiesPerReplacementAverage: 50
- entitiesPerReplacementStdDev: 10
- replacements:
- - id: WallReinforcedRust
- - type: entity
- id: BasicTrashVariationPass
- parent: BaseVariationPass
- components:
- - type: EntitySpawnVariationPass
- tilesPerEntityAverage: 35
- tilesPerEntityStdDev: 4
- entities:
- - id: RandomSpawner
- - type: weightedRandomFillSolution
- id: RandomFillTrashPuddle
- fills:
- - quantity: 80
- weight: 5
- reagents:
- - Vomit
- - InsectBlood
- - WeldingFuel
- - Mold
- - quantity: 55
- weight: 4
- reagents:
- - PlantBGone
- - Potassium # :trollface:
- - VentCrud
- - Carbon
- - Hydrogen
- - Fat
- - SpaceLube
- - SpaceGlue
- - Sulfur
- - Acetone
- - Bleach
- - quantity: 40
- weight: 3
- reagents:
- - Blood
- - CopperBlood
- - Slime
- - quantity: 25
- weight: 1
- reagents:
- - Omnizine
- - Desoxyephedrine
- - Napalm
- - Radium
- - Gold
- - Silver
- - Sodium
- - JuiceThatMakesYouWeh
- - type: weightedRandomFillSolution
- id: RandomFillTrashPuddleBloodbath
- fills:
- - quantity: 80
- weight: 1
- reagents:
- - Blood
- - type: entity
- id: BasicPuddleMessVariationPass
- parent: BaseVariationPass
- components:
- - type: PuddleMessVariationPass
- randomPuddleSolutionFill: RandomFillTrashPuddle
- - type: entity
- id: BloodbathPuddleMessVariationPass
- parent: BaseVariationPass
- components:
- - type: PuddleMessVariationPass
- tilesPerSpillAverage: 150
- tilesPerSpillStdDev: 10
- randomPuddleSolutionFill: RandomFillTrashPuddleBloodbath
- - type: entity
- id: CutWireVariationPass
- parent: BaseVariationPass
- components:
- - type: CutWireVariationPass
- wireCutChance: 0.01
- maxWiresCut: 20
- blacklist:
- components:
- - ParticleAcceleratorControlBox
|