mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2026-08-26 06:40:08 +01:00
ensure only our POIs are loaded (#11394)
This commit is contained in:
@@ -150,19 +150,19 @@
|
||||
// Cave submaps are first.
|
||||
var/undermines_z = GLOB.map_templates_loaded[Z_NAME_RB_UNDERMINES]
|
||||
var/surface_mines_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE_MINES]
|
||||
seed_submaps(list(undermines_z), 140, /area/surface/cave/unexplored/normal, /datum/map_template/surface/mountains/normal)
|
||||
seed_submaps(list(undermines_z), 140, /area/surface/cave/unexplored/deep, /datum/map_template/surface/mountains/deep)
|
||||
seed_submaps(list(surface_mines_z), 140, /area/surface/outside/wilderness/mountains, /datum/map_template/surface/mountains/normal)
|
||||
seed_submaps(list(undermines_z), 140, /area/surface/cave/unexplored/normal, datum/map_template/surface/mountain_ch/normal)
|
||||
seed_submaps(list(undermines_z), 140, /area/surface/cave/unexplored/deep, datum/map_template/surface/mountain_ch/deep)
|
||||
seed_submaps(list(surface_mines_z), 140, /area/surface/outside/wilderness/mountains, datum/map_template/surface/mountain_ch/normal)
|
||||
|
||||
// Plains to make them less plain.
|
||||
var/surface_ocean_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE]
|
||||
seed_submaps(list(Z_LEVEL_RB_SURFACE), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains) // Both of these will need a massive POI overhaul. The framework is in, and tiles will be mass-edited to match, but better POIs are wanted.
|
||||
seed_submaps(list(surface_ocean_z), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains) // Both of these will need a massive POI overhaul. The framework is in, and tiles will be mass-edited to match, but better POIs are wanted.
|
||||
seed_submaps(list(Z_LEVEL_RB_SURFACE), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains_ch) // Both of these will need a massive POI overhaul. The framework is in, and tiles will be mass-edited to match, but better POIs are wanted.
|
||||
seed_submaps(list(surface_ocean_z), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains_ch) // Both of these will need a massive POI overhaul. The framework is in, and tiles will be mass-edited to match, but better POIs are wanted.
|
||||
|
||||
// Wilderness is next.
|
||||
var/surface_wilds_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE_WILDS]
|
||||
seed_submaps(list(surface_wilds_z), 240, /area/surface/outside/wilderness/normal, /datum/map_template/surface/wilderness/normal)
|
||||
seed_submaps(list(surface_wilds_z), 240, /area/surface/outside/wilderness/deep, /datum/map_template/surface/wilderness/deep)
|
||||
seed_submaps(list(surface_wilds_z), 240, /area/surface/outside/wilderness/normal, /datum/map_template/surface/wilderness_ch/normal)
|
||||
seed_submaps(list(surface_wilds_z), 240, /area/surface/outside/wilderness/deep, /datum/map_template/surface/wilderness_ch/deep)
|
||||
// If Space submaps are made, add a line to make them here as well.
|
||||
|
||||
// Now for the tunnels. (This decides the load order of ore generation and cave generation. Check Random_Map to see % )
|
||||
|
||||
@@ -109,17 +109,17 @@
|
||||
|
||||
// Cave submaps are first.
|
||||
var/surface_mine_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE_MINES]
|
||||
seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/normal, /datum/map_template/surface/mountains/normal)
|
||||
seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/deep, /datum/map_template/surface/mountains/deep)
|
||||
seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/normal, /datum/map_template/surface/mountain_ch/normal)
|
||||
seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/deep, /datum/map_template/surface/mountain_ch/deep)
|
||||
|
||||
// Plains to make them less plain.
|
||||
var/surface_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE]
|
||||
seed_submaps(list(surface_z), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains) // Center area is WIP until map editing settles down.
|
||||
seed_submaps(list(surface_z), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains_ch) // Center area is WIP until map editing settles down.
|
||||
|
||||
// Wilderness is next.
|
||||
var/surface_wild_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE_WILDS]
|
||||
seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/normal, /datum/map_template/surface/wilderness/normal)
|
||||
seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/deep, /datum/map_template/surface/wilderness/deep)
|
||||
seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/normal, /datum/map_template/surface/wilderness_ch/normal)
|
||||
seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/deep, /datum/map_template/surface/wilderness_ch/deep)
|
||||
// If Space submaps are made, add a line to make them here as well.
|
||||
|
||||
// Now for the tunnels. (This decides the load order of ore generation and cave generation. Check Random_Map to see % )
|
||||
|
||||
@@ -111,17 +111,17 @@
|
||||
|
||||
// Cave submaps are first.
|
||||
var/surface_mine_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE_MINES]
|
||||
seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/normal, /datum/map_template/surface/mountains/normal) //CHOMPEdit bumped up from 60 to 80
|
||||
seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/deep, /datum/map_template/surface/mountains/deep) //CHOMPEdit bumped up from 60 to 80
|
||||
seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/normal, /datum/map_template/surface/mountain_ch/normal) //CHOMPEdit bumped up from 60 to 80
|
||||
seed_submaps(list(surface_mine_z), 140, /area/surface/cave/unexplored/deep, /datum/map_template/surface/mountain_ch/deep) //CHOMPEdit bumped up from 60 to 80
|
||||
|
||||
// Plains to make them less plain.
|
||||
var/surface_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE]
|
||||
seed_submaps(list(surface_z), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains) // Center area is WIP until map editing settles down. //CHOMPEdit bumped up from 80 to 140
|
||||
seed_submaps(list(surface_z), 220, /area/surface/outside/plains/normal, /datum/map_template/surface/plains_ch) // Center area is WIP until map editing settles down. //CHOMPEdit bumped up from 80 to 140
|
||||
|
||||
// Wilderness is next.
|
||||
var/surface_wild_z = GLOB.map_templates_loaded[Z_NAME_ALIAS_SURFACE_WILDS]
|
||||
seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/normal, /datum/map_template/surface/wilderness/normal) //CHOMPEdit bumped up from 60 to 150
|
||||
seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/deep, /datum/map_template/surface/wilderness/deep) //CHOMPEdit bumped up from 60 to 150
|
||||
seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/normal, /datum/map_template/surface/wilderness_ch/normal) //CHOMPEdit bumped up from 60 to 150
|
||||
seed_submaps(list(surface_wild_z), 240, /area/surface/outside/wilderness/deep, /datum/map_template/surface/wilderness_ch/deep) //CHOMPEdit bumped up from 60 to 150
|
||||
// If Space submaps are made, add a line to make them here as well.
|
||||
|
||||
// Now for the tunnels. (This decides the load order of ore generation and cave generation. Check Random_Map to see % )
|
||||
|
||||
@@ -52,15 +52,15 @@
|
||||
// The bottom half should be fairly tame, with perhaps a few enviromental hazards.
|
||||
// The top half is when things start getting dangerous, but the loot gets better.
|
||||
|
||||
/datum/map_template/surface/mountains
|
||||
/datum/map_template/surface/mountain_ch
|
||||
name = "Mountain Content"
|
||||
desc = "Don't dig too deep!"
|
||||
|
||||
// 'Normal' templates get used on the bottom half, and should be safer.
|
||||
/datum/map_template/surface/mountains/normal
|
||||
/datum/map_template/surface/mountain_ch/normal
|
||||
|
||||
// 'Deep' templates get used on the top half, and should be more dangerous and rewarding.
|
||||
/datum/map_template/surface/mountains/deep
|
||||
/datum/map_template/surface/mountain_ch/deep
|
||||
|
||||
// To be added: Templates for cave exploration when they are made.
|
||||
|
||||
@@ -68,7 +68,7 @@
|
||||
* Normal Caves *
|
||||
****************/
|
||||
|
||||
/datum/map_template/surface/mountains/normal/cliff1
|
||||
/datum/map_template/surface/mountain_ch/normal/cliff1
|
||||
name = "Ore-Topped Cliff"
|
||||
desc = "A raised area of rock created by volcanic forces."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/Cliff1.dmm"
|
||||
@@ -76,51 +76,51 @@
|
||||
allow_duplicates = TRUE
|
||||
template_group = "Underground Cliffs"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/crashedcontainmentshuttle
|
||||
/datum/map_template/surface/mountain_ch/normal/crashedcontainmentshuttle
|
||||
name = "Crashed Cargo Shuttle"
|
||||
desc = "A severely damaged military shuttle, its cargo seems to remain intact."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/crashedcontainmentshuttle.dmm"
|
||||
cost = 30
|
||||
|
||||
/datum/map_template/surface/mountains/normal/crystal1
|
||||
/datum/map_template/surface/mountain_ch/normal/crystal1
|
||||
name = "Crystal Cave 1"
|
||||
desc = "A small cave with glowing gems and diamonds."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/crystal1.dmm"
|
||||
cost = 5
|
||||
allow_duplicates = TRUE
|
||||
|
||||
/datum/map_template/surface/mountains/normal/crystal2
|
||||
/datum/map_template/surface/mountain_ch/normal/crystal2
|
||||
name = "Crystal Cave 2"
|
||||
desc = "A moderate sized cave with glowing gems and diamonds."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/crystal2.dmm"
|
||||
cost = 10
|
||||
allow_duplicates = TRUE
|
||||
|
||||
/datum/map_template/surface/mountains/normal/crystal2
|
||||
/datum/map_template/surface/mountain_ch/normal/crystal2
|
||||
name = "Crystal Cave 3"
|
||||
desc = "A large spiral of crystals with diamonds in the center."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/crystal3.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/mountains/normal/deadBeacon
|
||||
/datum/map_template/surface/mountain_ch/normal/deadBeacon
|
||||
name = "Abandoned Relay"
|
||||
desc = "An unregistered comms relay, abandoned to the elements."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/deadBeacon.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/mountains/normal/deadspy
|
||||
/datum/map_template/surface/mountain_ch/normal/deadspy
|
||||
name = "Spy Remains"
|
||||
desc = "W+M1 = Salt."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/deadspy.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/mountains/normal/digsite
|
||||
/datum/map_template/surface/mountain_ch/normal/digsite
|
||||
name = "Dig Site"
|
||||
desc = "A small abandoned dig site."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/digsite.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/mountains/normal/geyser1
|
||||
/datum/map_template/surface/mountain_ch/normal/geyser1
|
||||
name = "Ore-Rich Geyser"
|
||||
desc = "A subterranean geyser that produces steam. This one has a particularly abundant amount of materials surrounding it."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/Geyser1.dmm"
|
||||
@@ -128,7 +128,7 @@
|
||||
allow_duplicates = TRUE
|
||||
template_group = "Underground Geysers"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/geyser2
|
||||
/datum/map_template/surface/mountain_ch/normal/geyser2
|
||||
name = "Fenced Geyser"
|
||||
desc = "A subterranean geyser that produces steam. This one has a damaged fence surrounding it."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/Geyser2.dmm"
|
||||
@@ -136,7 +136,7 @@
|
||||
allow_duplicates = TRUE
|
||||
template_group = "Underground Geysers"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/geyser3
|
||||
/datum/map_template/surface/mountain_ch/normal/geyser3
|
||||
name = "Magmatic Geyser"
|
||||
desc = "A subterranean geyser that produces incendiary gas. It is recessed into the ground, and filled with magma. It's a relatively dormant volcano."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/Geyser2.dmm"
|
||||
@@ -144,80 +144,80 @@
|
||||
allow_duplicates = TRUE
|
||||
template_group = "Underground Geysers"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/IceCave1A
|
||||
/datum/map_template/surface/mountain_ch/normal/IceCave1A
|
||||
name = "Ice Cave 1A"
|
||||
desc = "This cave's slippery ice makes it hard to navigate, but determined explorers will be rewarded."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/IceCave1A.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/mountains/normal/IceCave1B
|
||||
/datum/map_template/surface/mountain_ch/normal/IceCave1B
|
||||
name = "Ice Cave 1B"
|
||||
desc = "This cave's slippery ice makes it hard to navigate, but determined explorers will be rewarded."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/IceCave1B.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/mountains/normal/IceCave1C
|
||||
/datum/map_template/surface/mountain_ch/normal/IceCave1C
|
||||
name = "Ice Cave 1C"
|
||||
desc = "This cave's slippery ice makes it hard to navigate, but determined explorers will be rewarded."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/IceCave1C.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/mountains/normal/lost_explorer
|
||||
/datum/map_template/surface/mountain_ch/normal/lost_explorer
|
||||
name = "Lost Explorer"
|
||||
desc = "The remains of an explorer who rotted away ages ago, and their equipment."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/lost_explorer.dmm"
|
||||
cost = 5
|
||||
allow_duplicates = TRUE
|
||||
|
||||
/datum/map_template/surface/mountains/normal/Mineshaft1
|
||||
/datum/map_template/surface/mountain_ch/normal/Mineshaft1
|
||||
name = "Abandoned Mineshaft 1"
|
||||
desc = "An abandoned minning tunnel from a lost money making effort."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/Mineshaft1.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/mountains/normal/prepper1
|
||||
/datum/map_template/surface/mountain_ch/normal/prepper1
|
||||
name = "Prepper Bunker"
|
||||
desc = "A little hideaway for someone with more time and money than sense."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/prepper1.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/mountains/normal/qshuttle
|
||||
/datum/map_template/surface/mountain_ch/normal/qshuttle
|
||||
name = "Quarantined Shuttle"
|
||||
desc = "An emergency landing turned viral outbreak turned tragedy."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/quarantineshuttle.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/ritual
|
||||
/datum/map_template/surface/mountain_ch/normal/ritual
|
||||
name = "Dark Ritual"
|
||||
desc = "Who put all these corgi plushies here? What are they doing?"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/ritual.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/mountains/normal/Rockb1
|
||||
/datum/map_template/surface/mountain_ch/normal/Rockb1
|
||||
name = "Rocky Base 1"
|
||||
desc = "Someones underground hidey hole"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/Rockb1.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/mountains/normal/supplydrop1
|
||||
/datum/map_template/surface/mountain_ch/normal/supplydrop1
|
||||
name = "Supply Drop 1"
|
||||
desc = "A drop pod that landed deep within the mountains."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/SupplyDrop1.dmm"
|
||||
cost = 10
|
||||
allow_duplicates = TRUE
|
||||
|
||||
/datum/map_template/surface/mountains/normal/SwordCave
|
||||
/datum/map_template/surface/mountain_ch/normal/SwordCave
|
||||
name = "Cursed Sword Cave"
|
||||
desc = "An underground lake. The sword on the lake's island holds a terrible secret."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/SwordCave.dmm"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/temple
|
||||
/datum/map_template/surface/mountain_ch/normal/temple
|
||||
name = "Abandoned Temple"
|
||||
desc = "An ancient temple, long since abandoned. Perhaps alien in origin?"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/temple.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault1
|
||||
/datum/map_template/surface/mountain_ch/normal/vault1
|
||||
name = "Mine Vault 1"
|
||||
desc = "A small vault with potential loot."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault1.dmm"
|
||||
@@ -225,7 +225,7 @@
|
||||
allow_duplicates = TRUE
|
||||
template_group = "Buried Vaults"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault2
|
||||
/datum/map_template/surface/mountain_ch/normal/vault2
|
||||
name = "Mine Vault 2"
|
||||
desc = "A small vault with potential loot."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault2.dmm"
|
||||
@@ -233,7 +233,7 @@
|
||||
allow_duplicates = TRUE
|
||||
template_group = "Buried Vaults"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault3
|
||||
/datum/map_template/surface/mountain_ch/normal/vault3
|
||||
name = "Mine Vault 3"
|
||||
desc = "A small vault with potential loot. Also a horrible suprise."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault3.dmm"
|
||||
@@ -246,96 +246,96 @@
|
||||
**************/
|
||||
|
||||
/* Vorestation Removal
|
||||
/datum/map_template/surface/mountains/deep/lost_explorer
|
||||
/datum/map_template/surface/mountain_ch/deep/lost_explorer
|
||||
name = "Lost Explorer, Deep"
|
||||
desc = "The remains of an explorer who rotted away ages ago, and their equipment. Again."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/lost_explorer.dmm"
|
||||
cost = 5
|
||||
allow_duplicates = TRUE */
|
||||
|
||||
/datum/map_template/surface/mountains/normal/BlastMine1 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/BlastMine1 //VOREStation Edit
|
||||
name = "Blast Mine 1"
|
||||
desc = "An abandoned blast mining site, seems that local wildlife has moved in."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/BlastMine1.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/CaveTrench //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/CaveTrench //VOREStation Edit
|
||||
name = "Cave River"
|
||||
desc = "A strange underground river."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/CaveTrench.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/crashedmedshuttle //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/crashedmedshuttle //VOREStation Edit
|
||||
name = "Crashed Med Shuttle"
|
||||
desc = "A medical response shuttle that went missing some time ago. So this is where they went."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/CrashedMedShuttle1.dmm" //VOREStation Edit
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/crashed_ufo //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/crashed_ufo //VOREStation Edit
|
||||
name = "Crashed UFO"
|
||||
desc = "A (formerly) flying saucer that is now embedded into the mountain, yet it still seems to be running..."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/crashed_ufo.dmm"
|
||||
cost = 40
|
||||
discard_prob = 50
|
||||
|
||||
/datum/map_template/surface/mountains/normal/crashed_ufo_frigate //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/crashed_ufo_frigate //VOREStation Edit
|
||||
name = "Crashed UFO Frigate"
|
||||
desc = "A (formerly) flying saucer that is now embedded into the mountain, yet the combat protocols still seem to be running..."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/crashed_ufo_frigate.dmm"
|
||||
cost = 60
|
||||
discard_prob = 50
|
||||
|
||||
/datum/map_template/surface/mountains/normal/deadly_rabbit // VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/deadly_rabbit // VOREStation Edit
|
||||
name = "The Killer Rabbit"
|
||||
desc = "A cave where the Knights of the Round have fallen to a murderous Rabbit."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/deadly_rabbit_vr.dmm"
|
||||
cost = 5
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/surface/mountains/normal/excavation1 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/excavation1 //VOREStation Edit
|
||||
name = "Excavation Site"
|
||||
desc = "An abandoned mining site."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/excavation1.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/lava_trench //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/lava_trench //VOREStation Edit
|
||||
name = "lava trench"
|
||||
desc = "A long stretch of lava underground, almost river-like, with a small crystal research outpost on the side."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/lava_trench.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/oregrub_den // CHOMPStation Add
|
||||
/datum/map_template/surface/mountain_ch/normal/oregrub_den // CHOMPStation Add
|
||||
name = "Oregrub Den"
|
||||
desc = "A den full of hungry, voracious oregrubs, that don't seem to take kindly to your presence..."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/oregrub_deposit_ch.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/rat_den // CHOMPStation Add
|
||||
/datum/map_template/surface/mountain_ch/normal/rat_den // CHOMPStation Add
|
||||
name = "Rat Den"
|
||||
desc = "A den full of hungry, voracious rats, that don't seem to take kindly to your presence..."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/rat_den_ch.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/Scave1 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/Scave1 //VOREStation Edit
|
||||
name = "Spider Cave 1"
|
||||
desc = "A minning tunnel home to an aggressive collection of spiders."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/Scave1.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/deep/spatial_anomaly
|
||||
/datum/map_template/surface/mountain_ch/deep/spatial_anomaly
|
||||
name = "spatial anomaly"
|
||||
desc = "A strange section of the caves that seems twist and turn in ways that shouldn't be physically possible."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/spatial_anomaly.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/mountains/normal/Speakeasy //VOREStation add
|
||||
/datum/map_template/surface/mountain_ch/normal/Speakeasy //VOREStation add
|
||||
name = "Speakeasy"
|
||||
desc = "A hidden underground bar to serve drinks in secret and in style."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/speakeasy_vr.dmm"
|
||||
cost = 10
|
||||
allow_duplicates = FALSE
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault1 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/vault1 //VOREStation Edit
|
||||
name = "Mine Vault 1"
|
||||
desc = "A small vault with potential loot."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault1.dmm"
|
||||
@@ -343,7 +343,7 @@
|
||||
allow_duplicates = TRUE
|
||||
template_group = "Buried Vaults"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault2 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/vault2 //VOREStation Edit
|
||||
name = "Mine Vault 2"
|
||||
desc = "A small vault with potential loot."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault2.dmm"
|
||||
@@ -351,28 +351,28 @@
|
||||
allow_duplicates = TRUE
|
||||
template_group = "Buried Vaults"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault3 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/vault3 //VOREStation Edit
|
||||
name = "Mine Vault 3"
|
||||
desc = "A small vault with potential loot. Also a horrible suprise."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault3.dmm"
|
||||
cost = 15
|
||||
template_group = "Buried Vaults"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault4 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/vault4 //VOREStation Edit
|
||||
name = "Mine Vault 4"
|
||||
desc = "A small xeno vault with potential loot. Also horrible suprises."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault4.dmm"
|
||||
cost = 20
|
||||
template_group = "Buried Vaults"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault5 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/vault5 //VOREStation Edit
|
||||
name = "Mine Vault 5"
|
||||
desc = "A small xeno vault with potential loot. Also major horrible suprises."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault5.dmm"
|
||||
cost = 25
|
||||
template_group = "Buried Vaults"
|
||||
|
||||
/datum/map_template/surface/mountains/normal/vault6 //VOREStation Edit
|
||||
/datum/map_template/surface/mountain_ch/normal/vault6 //VOREStation Edit
|
||||
name = "Mine Vault 6"
|
||||
desc = "A small mercenary tower with potential loot."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/vault6.dmm"
|
||||
@@ -382,7 +382,7 @@
|
||||
|
||||
/*==DISABLED==/
|
||||
|
||||
/datum/map_template/surface/mountains/normal/Cavelake //This is the same thing as cavetrench
|
||||
/datum/map_template/surface/mountain_ch/normal/Cavelake //This is the same thing as cavetrench
|
||||
name = "Cave Lake"
|
||||
desc = "A large underground lake."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/mountains/Cavelake.dmm"
|
||||
|
||||
@@ -45,233 +45,233 @@
|
||||
// The 'plains' is the area outside the immediate perimeter of the big outpost.
|
||||
// POIs here should not be dangerous, be mundane, and be somewhat conversative on the loot. Some of the loot can be useful, but it shouldn't trivialize the Wilderness.
|
||||
|
||||
/datum/map_template/surface/plains
|
||||
/datum/map_template/surface/plains_ch
|
||||
name = "Surface Content - Plains"
|
||||
desc = "Used to make the surface outside the outpost be 16% less boring."
|
||||
|
||||
// To be added: Templates for surface exploration when they are made.
|
||||
|
||||
/datum/map_template/surface/plains/boathouse
|
||||
/datum/map_template/surface/plains_ch/boathouse
|
||||
name = "Boathouse"
|
||||
desc = "A fancy house on a lake."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/Boathouse.dmm"
|
||||
cost = 30
|
||||
|
||||
/datum/map_template/surface/plains/bonfire
|
||||
/datum/map_template/surface/plains_ch/bonfire
|
||||
name = "Abandoned Bonfire"
|
||||
desc = "Someone seems to enjoy orange juice a bit too much."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/bonfire.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/buriedtreasure
|
||||
/datum/map_template/surface/plains_ch/buriedtreasure
|
||||
name = "Buried Treasure"
|
||||
desc = "A hole in the ground, who knows what might be inside!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/BuriedTreasure.dmm"
|
||||
cost = 10
|
||||
template_group = "Shallow Grave"
|
||||
|
||||
/datum/map_template/surface/plains/buriedtreasure2
|
||||
/datum/map_template/surface/plains_ch/buriedtreasure2
|
||||
name = "Buried Treasure 2"
|
||||
desc = "A hole in the ground, who knows what might be inside!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/BuriedTreasure2.dmm"
|
||||
cost = 10
|
||||
template_group = "Shallow Grave"
|
||||
|
||||
/datum/map_template/surface/plains/buriedtreasure3
|
||||
/datum/map_template/surface/plains_ch/buriedtreasure3
|
||||
name = "Buried Treasure 3"
|
||||
desc = "A hole in the ground, who knows what might be inside!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/BuriedTreasure3.dmm"
|
||||
cost = 10
|
||||
template_group = "Shallow Grave"
|
||||
|
||||
/datum/map_template/surface/plains/camp
|
||||
/datum/map_template/surface/plains_ch/camp
|
||||
name = "Camp Site"
|
||||
desc = "A small campsite, complete with housing and bonfire."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/camp.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/chemspill1
|
||||
/datum/map_template/surface/plains_ch/chemspill1
|
||||
name = "Ruptured Canister"
|
||||
desc = "A dumped chemical canister. Looks dangerous."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/chemspill1.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/construction
|
||||
/datum/map_template/surface/plains_ch/construction
|
||||
name = "Construction Site"
|
||||
desc = "A structure being built. It seems laziness is not limited to engineers."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/construction.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/diner
|
||||
/datum/map_template/surface/plains_ch/diner
|
||||
name = "Diner"
|
||||
desc = "An old timey diner. Looks like you could get something tasty here."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/Diner.dmm"
|
||||
cost = 25
|
||||
|
||||
/datum/map_template/surface/plains/dragon
|
||||
/datum/map_template/surface/plains_ch/dragon
|
||||
name = "Dragon Den"
|
||||
desc = "A den for a fierce dragon."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/dragon.dmm" //VOREStation Edit
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/epod
|
||||
/datum/map_template/surface/plains_ch/epod
|
||||
name = "Emergency Pod"
|
||||
desc = "A vacant Emergency pod in the middle of nowhere."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/Epod.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/epod2
|
||||
/datum/map_template/surface/plains_ch/epod2
|
||||
name = "Emergency Pod 2"
|
||||
desc = "A locked Emergency pod in the middle of nowhere."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/Epod2.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/explorerhouse
|
||||
/datum/map_template/surface/plains_ch/explorerhouse
|
||||
name = "Empty Explorer's Home"
|
||||
desc = "A fair-sized house out in the frontier. It must have belonged to a capable explorer."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/explorerhouse.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/farm
|
||||
/datum/map_template/surface/plains_ch/farm
|
||||
name = "Farm"
|
||||
desc = "A small farm tended by a farmbot."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/farm.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/field
|
||||
/datum/map_template/surface/plains_ch/field
|
||||
name = "Field"
|
||||
desc = "A regular field with a tug on it."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/field.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/plains/hotspring
|
||||
/datum/map_template/surface/plains_ch/hotspring
|
||||
name = "Hot Spring"
|
||||
desc = "Wait what, a hotspring in a frost planet?"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/hotspring.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/kururak
|
||||
/datum/map_template/surface/plains_ch/kururak
|
||||
name = "Lone Kururak Den"
|
||||
desc = "A lone Kururak's den."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/kururak.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/mechpit
|
||||
/datum/map_template/surface/plains_ch/mechpit
|
||||
name = "Mechpit"
|
||||
desc = "A illmade Mech brawling ring."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/mechpit.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/plains/merchantstand
|
||||
/datum/map_template/surface/plains_ch/merchantstand
|
||||
name = "Merchant Stand"
|
||||
desc = "A merchant stand. What business could be done all the way out here?"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/merchantstand.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/methlab
|
||||
/datum/map_template/surface/plains_ch/methlab
|
||||
name = "Meth Lab"
|
||||
desc = "A broken down greenhouse lab?, This does not look safe."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/methlab.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/plains/oldhotel
|
||||
/datum/map_template/surface/plains_ch/oldhotel
|
||||
name = "Old Hotel"
|
||||
desc = "An abandoned hotel of some sort. Why was it left behind?"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/oldhotel.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/plains/oldlibrary
|
||||
/datum/map_template/surface/plains_ch/oldlibrary
|
||||
name = "Old Library"
|
||||
desc = "An abandoned library of some sort. You can smell the musty pages."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/oldlibrary.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/plains/pascalb
|
||||
/datum/map_template/surface/plains_ch/pascalb
|
||||
name = "Irradiated Manhole Cover"
|
||||
desc = "How did this old thing get all the way out here?"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/PascalB.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/pooledrocks
|
||||
/datum/map_template/surface/plains_ch/pooledrocks
|
||||
name = "Pooled Rocks"
|
||||
desc = "An intresting rocky location."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/pooledrocks.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/plains/priderock
|
||||
/datum/map_template/surface/plains_ch/priderock
|
||||
name = "Pride Rock"
|
||||
desc = "A quite steep petruding rock from the earth, looks like a good hike."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/priderock.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/rationcache
|
||||
/datum/map_template/surface/plains_ch/rationcache
|
||||
name = "Ration Cache"
|
||||
desc = "A forgotten cache of emergency rations."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/RationCache.dmm" //VOREStation Edit
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/rockyoutcrop
|
||||
/datum/map_template/surface/plains_ch/rockyoutcrop
|
||||
name = "Rocky Outcrop"
|
||||
desc = "A fairly unremarkable pile of rocks."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/rockyoutcrop.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/snow
|
||||
/datum/map_template/surface/plains_ch/snow
|
||||
name = "Snow"
|
||||
desc = "Snow."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/snow.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/snow2
|
||||
/datum/map_template/surface/plains_ch/snow2
|
||||
name = "Snow 2"
|
||||
desc = "More snow."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/snow2.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/snow3
|
||||
/datum/map_template/surface/plains_ch/snow3
|
||||
name = "Snow 3"
|
||||
desc = "Snow Snow Snow."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/snow3.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/snow4
|
||||
/datum/map_template/surface/plains_ch/snow4
|
||||
name = "Snow 4"
|
||||
desc = "Too much snow."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/snow4.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/snow5
|
||||
/datum/map_template/surface/plains_ch/snow5
|
||||
name = "Snow 5"
|
||||
desc = "Please stop the snow!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/snow5.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/shakden
|
||||
/datum/map_template/surface/plains_ch/shakden
|
||||
name = "Shakden"
|
||||
desc = "A den of bitey bois!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/Shakden.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/plains/supplydrop
|
||||
/datum/map_template/surface/plains_ch/supplydrop
|
||||
name = "Old Supply Drop"
|
||||
desc = "A drop pod that's clearly been here a while, most of the things inside are rusted and worthless."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/supplydrop.dmm"
|
||||
cost = 8
|
||||
|
||||
/datum/map_template/surface/plains/thiefcave
|
||||
/datum/map_template/surface/plains_ch/thiefcave
|
||||
name = "Thieves' Cave"
|
||||
desc = "Some thieves are using this place to store their stash."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/thiefcave.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/plains/vrden
|
||||
/datum/map_template/surface/plains_ch/vrden
|
||||
name = "VR Den"
|
||||
desc = "A temporarily abandoned VR den, still functional."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/VRDen.dmm"
|
||||
cost = 10
|
||||
|
||||
|
||||
/datum/map_template/surface/plains/wreckedshelter
|
||||
/datum/map_template/surface/plains_ch/wreckedshelter
|
||||
name = "Wrecked Shelter"
|
||||
desc = "The remains of some old shelter. It's completely ruined."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/wreckedshelter.dmm"
|
||||
@@ -281,20 +281,20 @@
|
||||
/*Unused - Leaving Here For Now*/
|
||||
|
||||
/*
|
||||
/datum/map_template/surface/plains/normal/rockycrevice
|
||||
/datum/map_template/surface/plains_ch/normal/rockycrevice
|
||||
name = "Rocky Crevice"
|
||||
desc = "More rocks."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/rockycrevice.dmm"
|
||||
allow_duplicates = TRUE
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/plains/normal/peninsula
|
||||
/datum/map_template/surface/plains_ch/normal/peninsula
|
||||
name = "Peninsula"
|
||||
desc = "A peninsula. Looks like a small camp has been set up here."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/peninsula.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/plains/beacons
|
||||
/datum/map_template/surface/plains_ch/beacons
|
||||
name = "Collection of Marker Beacons"
|
||||
desc = "A bunch of marker beacons, scattered in a strange pattern."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/plains/beacons.dmm"
|
||||
|
||||
@@ -79,469 +79,469 @@
|
||||
// The top half connects to the outpost z-level, and is seperated from the bottom half by a river. It should provide a challenge to a well equiped Explorer team.
|
||||
// The bottom half should be even more dangerous, where only the robust, fortunate, or lucky can survive.
|
||||
|
||||
/datum/map_template/surface/wilderness
|
||||
/datum/map_template/surface/wilderness_ch
|
||||
name = "Surface Content - Wildy"
|
||||
desc = "Used to make the surface's wilderness be 17% less boring."
|
||||
|
||||
// 'Normal' templates get used on the top half, and should be challenging.
|
||||
/datum/map_template/surface/wilderness/normal
|
||||
/datum/map_template/surface/wilderness_ch/normal
|
||||
|
||||
// 'Deep' templates get used on the bottom half, and should be (even more) dangerous and rewarding.
|
||||
/datum/map_template/surface/wilderness/deep
|
||||
/datum/map_template/surface/wilderness_ch/deep
|
||||
|
||||
// To be added: Templates for surface exploration when they are made.
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/BSD
|
||||
/datum/map_template/surface/wilderness_ch/deep/BSD
|
||||
name = "Black Shuttle Down"
|
||||
desc = "You REALLY shouldn't be near this."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Blackshuttledown.dmm"
|
||||
cost = 30
|
||||
template_group = "Shuttle Down"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/BluSD
|
||||
/datum/map_template/surface/wilderness_ch/deep/BluSD
|
||||
name = "Blue Shuttle Down"
|
||||
desc = "You REALLY shouldn't be near this. Mostly because they're Police."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Blueshuttledown.dmm"
|
||||
cost = 50
|
||||
template_group = "Shuttle Down"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/borglab
|
||||
/datum/map_template/surface/wilderness_ch/deep/borglab
|
||||
name = "Borg Lab"
|
||||
desc = "Production of experimental combat robots gone rogue."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/borglab.dmm"
|
||||
cost = 30
|
||||
template_group = "Borg Lab"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/borglabAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/borglabAlt
|
||||
name = "Nanite Lab"
|
||||
desc = "Production of experimental nanite robots gone rogue."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/borglabAlt.dmm"
|
||||
cost = 30
|
||||
template_group = "Borg Lab"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/bountyhunter
|
||||
/datum/map_template/surface/wilderness_ch/deep/bountyhunter
|
||||
name = "Bounty Hunter Den"
|
||||
desc = "The temp home of some bounty hunters, waiting for pick up."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/bountyhunters.dmm"
|
||||
cost = 20
|
||||
template_group = "Bounty Team"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/bountyhunterAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/bountyhunterAlt
|
||||
name = "Elite Bounty Hunter Den"
|
||||
desc = "The temp home of three elite bounty hunters, waiting for pick up."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/bountyhunters2.dmm"
|
||||
cost = 20
|
||||
template_group = "Bounty Team"
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/butchershack
|
||||
/datum/map_template/surface/wilderness_ch/normal/butchershack
|
||||
name = "Butcher Shack"
|
||||
desc = "An old, bloody butcher's shack. Get your meat here!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/butchershack.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/cave
|
||||
/datum/map_template/surface/wilderness_ch/deep/cave
|
||||
name = "CaveS"
|
||||
desc = "Chitter chitter!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/CaveS.dmm"
|
||||
cost = 20
|
||||
template_group = "CaveS"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/caveAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/caveAlt
|
||||
name = "CaveS"
|
||||
desc = "Chitterexplosion!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/CaveSAlt.dmm"
|
||||
cost = 20
|
||||
template_group = "CaveS"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/chapel
|
||||
/datum/map_template/surface/wilderness_ch/deep/chapel
|
||||
name = "Chapel 1"
|
||||
desc = "The chapel of lights and a robot."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Chapel.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/chasm
|
||||
/datum/map_template/surface/wilderness_ch/normal/chasm
|
||||
name = "Chasm"
|
||||
desc = "An inconspicuous looking cave, watch your step."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/chasm.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/cragzone1
|
||||
/datum/map_template/surface/wilderness_ch/normal/cragzone1
|
||||
name = "Cragzone 1"
|
||||
desc = "Rocks and more rocks."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Cragzone1.dmm"
|
||||
cost = 5
|
||||
allow_duplicates = TRUE
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/deathden
|
||||
/datum/map_template/surface/wilderness_ch/deep/deathden
|
||||
name = "Death Den"
|
||||
desc = "Gathering of acolytes gone wrong."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/deathden.dmm"
|
||||
cost = 15
|
||||
template_group = "Death Den"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/deathdenAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/deathdenAlt
|
||||
name = "Death Spice Den"
|
||||
desc = "Gathering of acolytes gone burnly wrong."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/deathdenAlt.dmm"
|
||||
cost = 15
|
||||
template_group = "Death Den"
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/decoupledengine
|
||||
/datum/map_template/surface/wilderness_ch/normal/decoupledengine
|
||||
name = "Decoupled Engine"
|
||||
desc = "A damaged fission engine jettisoned from a starship long ago."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/DecoupledEngine.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/demonpool
|
||||
/datum/map_template/surface/wilderness_ch/normal/demonpool
|
||||
name = "Demon Pool"
|
||||
desc = "A cult ritual gone horribly wrong."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/demonpool.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/derelictengine
|
||||
/datum/map_template/surface/wilderness_ch/deep/derelictengine
|
||||
name = "Derelict Engine"
|
||||
desc = "An crashed alien ship, something went wrong inside."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/derelictengine.dmm"
|
||||
cost = 45
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/DJOutpost1
|
||||
/datum/map_template/surface/wilderness_ch/deep/DJOutpost1
|
||||
name = "DJOutpost 1"
|
||||
desc = "Home of Sif Free Radio, the best - and only - radio station for miles around."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/DJOutpost1.dmm"
|
||||
template_group = "Sif Free Radio"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/DJOutpost2
|
||||
/datum/map_template/surface/wilderness_ch/deep/DJOutpost2
|
||||
name = "DJOutpost 2"
|
||||
desc = "The cratered remains of Sif Free Radio, the best - and only - radio station for miles around."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/DJOutpost2.dmm"
|
||||
template_group = "Sif Free Radio"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/DJOutpost3
|
||||
/datum/map_template/surface/wilderness_ch/deep/DJOutpost3
|
||||
name = "DJOutpost 3"
|
||||
desc = "The surprisingly high-tech home of Sif Free Radio, the best - and only - radio station for miles around."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/DJOutpost3.dmm"
|
||||
template_group = "Sif Free Radio"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/DJOutpost4
|
||||
/datum/map_template/surface/wilderness_ch/deep/DJOutpost4
|
||||
name = "DJOutpost 4"
|
||||
desc = "The surprisingly high-tech home of Sif Free Radio, the only radio station run by mindless clones."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/DJOutpost4.dmm"
|
||||
template_group = "Sif Free Radio"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/dogbase
|
||||
/datum/map_template/surface/wilderness_ch/deep/dogbase
|
||||
name = "Dog Base"
|
||||
desc = "A highly secured base with hungry trained canines"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/dogbase.dmm"
|
||||
cost = 20
|
||||
template_group = "Dog Base"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/dogbaseAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/dogbaseAlt
|
||||
name = "Spider Base"
|
||||
desc = "A highly secured base with hungry trained spider"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/dogbaseAlt.dmm"
|
||||
cost = 20
|
||||
template_group = "Dog Base"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/doomP
|
||||
/datum/map_template/surface/wilderness_ch/deep/doomP
|
||||
name = "DoomP"
|
||||
desc = "Witty description here."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/DoomP.dmm"
|
||||
cost = 30
|
||||
template_group = "doomP"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/doomPAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/doomPAlt
|
||||
name = "Doom Bridge"
|
||||
desc = "Witty description here 2."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/DoomPAlt.dmm"
|
||||
cost = 30
|
||||
template_group = "doomP"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/drgnplateu
|
||||
/datum/map_template/surface/wilderness_ch/deep/drgnplateu
|
||||
name = "Dragon Plateu"
|
||||
desc = "A dangerous plateu of cliffs home to a rampant gold hoarding dragon"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/drgnplateu.dmm"
|
||||
cost = 15
|
||||
template_group = "drgnplateu"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/drgnplateuAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/drgnplateuAlt
|
||||
name = "Dragon Island"
|
||||
desc = "A dangerous lava island home to a rampant gold hoarding dragon"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/drgnplateuAlt.dmm"
|
||||
cost = 15
|
||||
template_group = "drgnplateu"
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/drugden
|
||||
/datum/map_template/surface/wilderness_ch/normal/drugden
|
||||
name = "Drug Den"
|
||||
desc = "The remains of ill thought out whims."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Drugden.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/emptycabin
|
||||
/datum/map_template/surface/wilderness_ch/normal/emptycabin
|
||||
name = "Empty Cabin"
|
||||
desc = "An inconspicuous looking den hosted by a hungry otie"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/emptycabin.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/epod3
|
||||
/datum/map_template/surface/wilderness_ch/deep/epod3
|
||||
name = "Emergency Pod 3"
|
||||
desc = "A webbed Emergency pod in the middle of nowhere."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Epod3.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/epod4
|
||||
/datum/map_template/surface/wilderness_ch/normal/epod4
|
||||
name = "Emergency Pod 4"
|
||||
desc = "A flooded Emergency pod in the middle of nowhere."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Epod4.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/frostflynest
|
||||
/datum/map_template/surface/wilderness_ch/normal/frostflynest
|
||||
name = "Frostfly Nest"
|
||||
desc = "The nest of a Frostfly, or more."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/FrostflyNest.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/frostoasis
|
||||
/datum/map_template/surface/wilderness_ch/normal/frostoasis
|
||||
name = "Frost Oasis"
|
||||
desc = "A strange oasis with a gathering of wild animals."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/frostoasis.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/flake
|
||||
/datum/map_template/surface/wilderness_ch/normal/flake
|
||||
name = "Forest Lake"
|
||||
desc = "A serene lake sitting amidst the surface."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Flake.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/govpatrol
|
||||
/datum/map_template/surface/wilderness_ch/normal/govpatrol
|
||||
name = "Government Patrol"
|
||||
desc = "A long lost SifGuard ground survey patrol. Now they have you guys!"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/GovPatrol.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/greatwolfden
|
||||
/datum/map_template/surface/wilderness_ch/deep/greatwolfden
|
||||
name = "Great Wolf Den"
|
||||
desc = "Den hosted by the biggest alpha wolf of the wilderness"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/greatwolfden.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/hadzardzone
|
||||
/datum/map_template/surface/wilderness_ch/deep/hadzardzone
|
||||
name = "Hadzard Zone"
|
||||
desc = "A strange and secure drop site."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/hadzardzone.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/hadzardzone
|
||||
/datum/map_template/surface/wilderness_ch/deep/hadzardzone
|
||||
name = "Burning Hadzard Zone"
|
||||
desc = "A strange and secure drop site, now onfire"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/hadzardzone2.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/kururakden
|
||||
/datum/map_template/surface/wilderness_ch/normal/kururakden
|
||||
name = "Kururak Den"
|
||||
desc = "The den of a Kururak pack. May contain hibernating members."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/kururakden.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/lab1
|
||||
/datum/map_template/surface/wilderness_ch/normal/lab1
|
||||
name = "Lab 1"
|
||||
desc = "An isolated small robotics lab."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Lab1.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/leopardmanderden
|
||||
/datum/map_template/surface/wilderness_ch/deep/leopardmanderden
|
||||
name = "Leopardmander Den"
|
||||
desc = "Den of a voracious but very rare beast."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/leopardmanderden.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/lonewolf
|
||||
/datum/map_template/surface/wilderness_ch/deep/lonewolf
|
||||
name = "Lone Wolf"
|
||||
desc = "A large oppressing wolf, supervising from above its cliff"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/lonewolf.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/manor1
|
||||
/datum/map_template/surface/wilderness_ch/deep/manor1
|
||||
name = "Manor 1"
|
||||
desc = "Whodunit"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Manor1.dmm"
|
||||
cost = 20
|
||||
template_group = "Manor"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/manor1Alt
|
||||
/datum/map_template/surface/wilderness_ch/deep/manor1Alt
|
||||
name = "Manor 2"
|
||||
desc = "Whodunit2"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Manor1Alt.dmm"
|
||||
cost = 20
|
||||
template_group = "Manor"
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/Mcamp1
|
||||
/datum/map_template/surface/wilderness_ch/normal/Mcamp1
|
||||
name = "Military Camp 1"
|
||||
desc = "A derelict military camp host to some unsavory dangers"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/MCamp1.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/mudpit
|
||||
/datum/map_template/surface/wilderness_ch/normal/mudpit
|
||||
name = "Mudpit"
|
||||
desc = "What happens when someone is a bit too careless with gas.."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Mudpit.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/musk
|
||||
/datum/map_template/surface/wilderness_ch/normal/musk
|
||||
name = "Musk"
|
||||
desc = "0 to 60 in 1.9 seconds."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Musk.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/otieshelter
|
||||
/datum/map_template/surface/wilderness_ch/deep/otieshelter
|
||||
name = "Otie Shelter"
|
||||
desc = "A experimental lab of various breeds of oties"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/otieshelter.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/rocky1
|
||||
/datum/map_template/surface/wilderness_ch/normal/rocky1
|
||||
name = "Rocky 1"
|
||||
desc = "DununanununanununuNAnana"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Rocky1.dmm"
|
||||
allow_duplicates = TRUE
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/rocky2
|
||||
/datum/map_template/surface/wilderness_ch/normal/rocky2
|
||||
name = "Rocky 2"
|
||||
desc = "More rocks."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Rocky2.dmm"
|
||||
allow_duplicates = TRUE
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/Rocky3
|
||||
/datum/map_template/surface/wilderness_ch/normal/Rocky3
|
||||
name = "Rocky 3"
|
||||
desc = "More and more and more rocks."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Rocky3.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/rocky4
|
||||
/datum/map_template/surface/wilderness_ch/normal/rocky4
|
||||
name = "Rocky 4"
|
||||
desc = "An interesting geographic formation."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Rocky4.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/rockybase
|
||||
/datum/map_template/surface/wilderness_ch/deep/rockybase
|
||||
name = "Rocky Base"
|
||||
desc = "A guide to upsetting Icarus and the EIO"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Rockybase.dmm"
|
||||
cost = 35
|
||||
template_group = "Rocky Base"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/rockybaseAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/rockybaseAlt
|
||||
name = "Rocky Mining Base"
|
||||
desc = "A guide to upsetting mining"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/RockybaseAlt.dmm"
|
||||
cost = 35
|
||||
template_group = "Rocky Base"
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/shack1
|
||||
/datum/map_template/surface/wilderness_ch/normal/shack1
|
||||
name = "Shack 1"
|
||||
desc = "A small shack in the middle of nowhere, Your halloween murder happens here"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Shack1.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/shelter1
|
||||
/datum/map_template/surface/wilderness_ch/normal/shelter1
|
||||
name = "Shelter 1"
|
||||
desc = "The remains of a resourceful, but prideful explorer."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Shelter.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/smol1
|
||||
/datum/map_template/surface/wilderness_ch/normal/smol1
|
||||
name = "Smol 1"
|
||||
desc = "A tiny grove of trees, The Nemesis of thicc"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Smol1.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/snowrock1
|
||||
/datum/map_template/surface/wilderness_ch/normal/snowrock1
|
||||
name = "Snowrock 1"
|
||||
desc = "A rocky snow covered area"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Snowrock1.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/spider1
|
||||
/datum/map_template/surface/wilderness_ch/normal/spider1
|
||||
name = "Spider Nest 1"
|
||||
desc = "A small spider nest, in the forest."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/spider1.dmm"
|
||||
allow_duplicates = TRUE
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/syndisniperAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/syndisniperAlt
|
||||
name = "Syndi Drone"
|
||||
desc = "Syndicate watch tower, deadly but secluded, now with a drone"
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/syndisniperAlt.dmm"
|
||||
cost = 5
|
||||
template_group = "Sniper"
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/wolfden
|
||||
/datum/map_template/surface/wilderness_ch/normal/wolfden
|
||||
name = "Wolf Den"
|
||||
desc = "Small wolf den and their hunt spoils."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/wolfden.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/xenohive
|
||||
/datum/map_template/surface/wilderness_ch/deep/xenohive
|
||||
name = "Xeno Hive"
|
||||
desc = "A containment experiment gone wrong."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/xenohive.dmm"
|
||||
cost = 25
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/cliffbase
|
||||
/datum/map_template/surface/wilderness_ch/deep/cliffbase
|
||||
name = "Cliff Base"
|
||||
desc = "A hideout protected by a lake, and duo of snipers."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/AmbushBase.dmm"
|
||||
cost = 30
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/cliffbaseAlt
|
||||
/datum/map_template/surface/wilderness_ch/deep/cliffbaseAlt
|
||||
name = "Cliff lake Base"
|
||||
desc = "A hideout protected by a lake, and duo of snipers, but the spiders are on strike."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/AmbushBaseAlt.dmm"
|
||||
cost = 30
|
||||
template_group = "AmbushBase"
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/raideddmechhanger
|
||||
/datum/map_template/surface/wilderness_ch/deep/raideddmechhanger
|
||||
name = "Raided Mech Hanger"
|
||||
desc = "A hanger with mechs far past useabiltiy."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/RaidedMechBunker.dmm"
|
||||
cost = 15
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/AbandonedLab
|
||||
/datum/map_template/surface/wilderness_ch/deep/AbandonedLab
|
||||
name = "Abandoned Lab"
|
||||
desc = "Experiments gone wrong! Be wary of the test subjects gone rogue."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/AbandonedLab
|
||||
/datum/map_template/surface/wilderness_ch/deep/AbandonedLab
|
||||
name = "Abandoned Lab"
|
||||
desc = "Experiments gone wrong! Be wary of the test subjects gone rogue."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/AbandonedLab.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/VolcanicFissure
|
||||
/datum/map_template/surface/wilderness_ch/deep/VolcanicFissure
|
||||
name = "Volcanic Fissure"
|
||||
desc = "Strange alien tech has caused magma to surface, creating a pit of lava."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/VolcanicFissure.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/PirateLake
|
||||
/datum/map_template/surface/wilderness_ch/deep/PirateLake
|
||||
name = "Volcanic Fissure"
|
||||
desc = "Yarr, explorers my expirence diffcults when facing defenses of water and table."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/PirateLake.dmm"
|
||||
cost = 20
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/XenoWeaveMajor
|
||||
/datum/map_template/surface/wilderness_ch/deep/XenoWeaveMajor
|
||||
name = "Assimilated Engine"
|
||||
desc = "An engine fallen off a precursor structure, stolen by a diffrent breed."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/XenoWeaveMajor.dmm"
|
||||
cost = 45
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/XenoWeaveMinour
|
||||
/datum/map_template/surface/wilderness_ch/deep/XenoWeaveMinour
|
||||
name = "Assimilated Building"
|
||||
desc = "A building claimed and assimilated into the xenoweave."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/XenoWeaveMinour.dmm"
|
||||
@@ -549,19 +549,19 @@
|
||||
|
||||
/*==Disabled==/
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/Boombase //YW Edit remove boombase
|
||||
/datum/map_template/surface/wilderness_ch/deep/Boombase //YW Edit remove boombase
|
||||
name = "Boombase"
|
||||
desc = "What happens when you don't follow SOP."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/Boombase.dmm"
|
||||
cost = 5
|
||||
|
||||
/datum/map_template/surface/wilderness/normal/chemspill2
|
||||
/datum/map_template/surface/wilderness_ch/normal/chemspill2
|
||||
name = "Acrid Lake"
|
||||
desc = "A pool of water contaminated with highly dangerous chemicals."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/chemspill2.dmm"
|
||||
cost = 10
|
||||
|
||||
/datum/map_template/surface/wilderness/deep/MHR
|
||||
/datum/map_template/surface/wilderness_ch/deep/MHR
|
||||
name = "Manhack Rock"
|
||||
desc = "A rock filled with nasty Synthetics."
|
||||
mappath = "modular_chomp/maps/submaps/surface_submaps/wilderness/MHR.dmm"
|
||||
|
||||
Reference in New Issue
Block a user