Files
CHOMPStation2/code/global_vr.dm
2020-04-22 17:58:43 -07:00

56 lines
1.3 KiB
Plaintext

/hook/startup/proc/modules_vr()
robot_module_types += "Medihound"
robot_module_types += "K9"
robot_module_types += "Janihound"
robot_module_types += "Sci-borg"
robot_module_types += "Pupdozer"
robot_module_types += "Service-Hound"
robot_module_types += "KMine"
return 1
var/list/shell_module_types = list(
"Standard", "Service", "Clerical", "Service-Hound"
)
var/list/eventdestinations = list() // List of scatter landmarks for VOREStation event portals
var/global/list/acceptable_fruit_types= list(
"ambrosia",
"apple",
"banana",
"berries",
"cabbage",
"carrot",
"celery",
"cherry",
"chili",
"cocoa",
"corn",
"durian",
"eggplant",
"grapes",
"greengrapes",
"harebells",
"lavender",
"lemon",
"lettuce",
"lime",
"onion",
"orange",
"peanut",
"poppies",
"potato",
"pumpkin",
"rice",
"rose",
"rhubarb",
"soybean",
"spineapple",
"sugarcane",
"sunflowers",
"tomato",
"vanilla",
"watermelon",
"wheat",
"whitebeet")