mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-10 10:12:45 +00:00
51 lines
1.3 KiB
Plaintext
51 lines
1.3 KiB
Plaintext
var/list/vinestart = list()
|
|
var/list/verminstart = list()
|
|
|
|
var/list/awayabductors = list() // List of scatter landmarks for Abductors in Gateways
|
|
var/list/eventdestinations = list() // List of scatter landmarks for VOREStation event portals
|
|
var/list/eventabductors = list() // List of scatter landmarks for VOREStation abductor portals
|
|
|
|
var/global/list/acceptable_fruit_types= list(
|
|
"ambrosia",
|
|
"apple",
|
|
"banana",
|
|
"berries",
|
|
"cabbage",
|
|
"carrot",
|
|
"celery",
|
|
"cherry",
|
|
"chili",
|
|
"cocoa",
|
|
"corn",
|
|
"durian",
|
|
"eggplant",
|
|
"grapes",
|
|
"grass", // CH changes
|
|
"greengrapes",
|
|
"harebells",
|
|
"lavender",
|
|
"lemon",
|
|
"lettuce",
|
|
"lime",
|
|
"onion",
|
|
"orange",
|
|
"peanut",
|
|
"poppies",
|
|
"potato",
|
|
"pumpkin",
|
|
"reishi", // CH changes
|
|
"rice",
|
|
"rose",
|
|
"rhubarb",
|
|
"shand", // CH changes
|
|
"soybean",
|
|
"spineapple",
|
|
"sugarcane",
|
|
"sunflowers",
|
|
"tomato",
|
|
"towercap", // CH changes
|
|
"vanilla",
|
|
"watermelon",
|
|
"wheat",
|
|
"whitebeet")
|