Files
VOREStation/code/global_vr.dm
Unknown 00f1fa2756 Exploration/Gateway Update
- Adds a new Scatter type of gateway, abductor, which strips the person's gear and deposits them somewhere else
- Nerfs Expedition Phasers and Holdout Phasers
- Reduces the number of full size phasers in Exploration from 4 to 3
- Slightly buffs melee mobs
- Removes humanoid mobs from Virgo 3B Wilderness
- Removes ADG from one of the POIs from V2
2020-12-18 16:54:12 -05:00

58 lines
1.5 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/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",
"greengrapes",
"harebells",
"lavender",
"lemon",
"lettuce",
"lime",
"onion",
"orange",
"peanut",
"poppies",
"potato",
"pumpkin",
"rice",
"rose",
"rhubarb",
"soybean",
"spineapple",
"sugarcane",
"sunflowers",
"tomato",
"vanilla",
"watermelon",
"wheat",
"whitebeet")