mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-09 16:12:17 +00:00
56 lines
1.3 KiB
Plaintext
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")
|