Skip to content

Commit

Permalink
Repairs LV entirely. (#107)
Browse files Browse the repository at this point in the history
Co-authored-by: Jeff Watchson <[email protected]>
  • Loading branch information
BadAtThisGame302 and Jeff Watchson committed Feb 19, 2024
1 parent 6d432f9 commit 91a1e8b
Show file tree
Hide file tree
Showing 5 changed files with 61,224 additions and 0 deletions.
1 change: 1 addition & 0 deletions code/__DEFINES/__game.dm
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ block( \

#define MAP_ICE_COLONY "Ice Colony" // Highpop only
#define MAP_LV_624 "LV-624"
#define MAP_LV_624_REPAIRED "LV-624 Repaired"
#define MAP_BIG_RED "Solaris Ridge"
#define MAP_PRISON_STATION "Fiorina Cellblocks"
#define MAP_PRISON_STATION_V3 "Fiorina Science Annex"
Expand Down
1 change: 1 addition & 0 deletions code/modules/cm_marines/equipment/maps.dm
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,7 @@ GLOBAL_LIST_INIT_TYPED(map_type_list, /obj/item/map, setup_all_maps())
/proc/setup_all_maps()
return list(
MAP_LV_624 = new /obj/item/map/lazarus_landing_map(),
MAP_LV_624_REPAIRED = new /obj/item/map/lazarus_landing_map(),
MAP_ICE_COLONY = new /obj/item/map/ice_colony_map(),
MAP_ICE_COLONY_V1 = new /obj/item/map/ice_colony_map/v1(),
MAP_ICE_COLONY_V2 = new /obj/item/map/ice_colony_map/v2(),
Expand Down
3 changes: 3 additions & 0 deletions map_config/maps.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ map lv624
default
endmap

map lv624_repaired
endmap

map bigredv2
endmap

Expand Down
42 changes: 42 additions & 0 deletions maps/lv624_repaired.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
{
"map_name": "LV-624 Repaired",
"map_path": "map_files/LV624_Fixed",
"map_file": "LV624_repaired.dmm",
"webmap_url": "LV624",
"weather_holder": "/datum/weather_ss_map_holder/lv624",
"survivor_types": [
"/datum/equipment_preset/survivor/scientist/lv",
"/datum/equipment_preset/survivor/doctor/lv",
"/datum/equipment_preset/survivor/chaplain/lv",
"/datum/equipment_preset/survivor/engineer/lv",
"/datum/equipment_preset/survivor/corporate",
"/datum/equipment_preset/survivor/trucker/lv",
"/datum/equipment_preset/survivor/security/lv",
"/datum/equipment_preset/survivor/goon",
"/datum/equipment_preset/survivor/clf",
"/datum/equipment_preset/survivor/civilian"
],
"map_item_type": "/obj/item/map/lazarus_landing_map",
"announce_text": "An automated distress signal has been received from the archaeologial site of Lazarus Landing, on border world of 'LV-624'. A response team from the ###SHIPNAME### will be dispatched shortly to investigate.",
"monkey_types": [
"farwa",
"monkey",
"neaera",
"stok"
],
"environment_traits": { "Fog": true },
"traits": [{ "Ground": true }],
"xvx_hives": {
"xeno_hive_alpha": 0,
"xeno_hive_bravo": 0,
"xeno_hive_charlie": 70
},
"camouflage": "jungle",
"gamemodes": [
"Distress Signal",
"Hunter Games",
"Hive Wars",
"Faction Clash",
"Infection"
]
}
Loading

0 comments on commit 91a1e8b

Please sign in to comment.