From 224ce7ce282ad19552e90f376124e59e3fc96732 Mon Sep 17 00:00:00 2001 From: ChilbroBaggins <107660393+ChilbroBaggins@users.noreply.github.com> Date: Wed, 26 Oct 2022 07:15:28 -0500 Subject: [PATCH] Adds rndm vending spawner for mapping. (#11998) Co-authored-by: Jeff --- .../{ => Food_Drinks}/donkpocketbox.yml | 0 .../Food_Drinks/drinks_bottles.yml | 0 .../{ => Random}/Food_Drinks/drinks_glass.yml | 0 .../Food_Drinks/food_baked_single.yml | 0 .../Food_Drinks/food_baked_whole.yml | 0 .../{ => Random}/Food_Drinks/food_meal.yml | 0 .../{ => Random}/Food_Drinks/food_single.yml | 0 .../{ => Random}/Food_Drinks/food_snacks.yml | 0 .../Markers/Spawners/Random/vending.yml | 20 +++++++++++++++++++ 9 files changed, 20 insertions(+) rename Resources/Prototypes/Entities/Markers/Spawners/Random/{ => Food_Drinks}/donkpocketbox.yml (100%) rename Resources/Prototypes/Entities/Markers/Spawners/{ => Random}/Food_Drinks/drinks_bottles.yml (100%) rename Resources/Prototypes/Entities/Markers/Spawners/{ => Random}/Food_Drinks/drinks_glass.yml (100%) rename Resources/Prototypes/Entities/Markers/Spawners/{ => Random}/Food_Drinks/food_baked_single.yml (100%) rename Resources/Prototypes/Entities/Markers/Spawners/{ => Random}/Food_Drinks/food_baked_whole.yml (100%) rename Resources/Prototypes/Entities/Markers/Spawners/{ => Random}/Food_Drinks/food_meal.yml (100%) rename Resources/Prototypes/Entities/Markers/Spawners/{ => Random}/Food_Drinks/food_single.yml (100%) rename Resources/Prototypes/Entities/Markers/Spawners/{ => Random}/Food_Drinks/food_snacks.yml (100%) create mode 100644 Resources/Prototypes/Entities/Markers/Spawners/Random/vending.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/donkpocketbox.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/donkpocketbox.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Random/donkpocketbox.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/donkpocketbox.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/drinks_bottles.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_bottles.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/drinks_bottles.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_bottles.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/drinks_glass.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/drinks_glass.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/drinks_glass.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_baked_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_baked_single.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_single.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_baked_whole.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_whole.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_baked_whole.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_baked_whole.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_meal.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_meal.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_meal.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_single.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_single.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_single.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_snacks.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_snacks.yml similarity index 100% rename from Resources/Prototypes/Entities/Markers/Spawners/Food_Drinks/food_snacks.yml rename to Resources/Prototypes/Entities/Markers/Spawners/Random/Food_Drinks/food_snacks.yml diff --git a/Resources/Prototypes/Entities/Markers/Spawners/Random/vending.yml b/Resources/Prototypes/Entities/Markers/Spawners/Random/vending.yml new file mode 100644 index 0000000000..11dfea9963 --- /dev/null +++ b/Resources/Prototypes/Entities/Markers/Spawners/Random/vending.yml @@ -0,0 +1,20 @@ +- type: entity + id: RandomVending + name: random vending machine spawner + parent: MarkerBase + components: + - type: Sprite + layers: + - state: red + - texture: Structures/Machines/VendingMachines/coffee.rsi/off.png + - type: RandomSpawner + prototypes: + - VendingMachineCigs + - VendingMachineCoffee + - VendingMachineCola + - VendingMachineDiscount + - VendingMachineSnack + - VendingMachineSovietSoda + - VendingMachineChang + - VendingMachineDonut + chance: 1 \ No newline at end of file