mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-27 01:41:50 +00:00
* I AM NOT A KING. I AM NOT A GOD. I AM LUNACY. * THE SCOPE CREEP * This was done in vi. No langserver. Send help. * Progress * Some issues fixed * The code builds, but the maps dont * CC builds, I doubt anything else does * Do this now * Safety * The map compiles * THE MAPPING HELL * Airlock controllers dont work * Fixed bombs * AND THATS FIXED * Phantom edit * Restores LL I think * The mapmerge hooks are actually retarded * Fixes spawners * Half working air control * Picky * Hyper efficient tank monitor * Sanity * Laying the framework * Improved alert console * Dont think this is actually done anywhere * Metering * ONE HUNDRED AND ~~EIGHTY~~ TWENTY SEVEN * WE ARE READY FOR BOX TO BUILD * One map done * Well that was easy * Another one * I think this is done * I should have removed this * I would make a russian joke but <current event> * Delta WIP * Makes delta work * Early review * TM safeguard * oops * METAAAAAAAAAAAAAAAAAAAAAAAAA * Fix #4213 * Trailing * oh for piss sake * Shutter fix * Roundstart ATs can go away * Review pass 1 * What could go wrong * BOOM BOOM BOOM * Not needed * Fix seed vault * Oops * Review changes
57 lines
3.6 KiB
Plaintext
57 lines
3.6 KiB
Plaintext
GLOBAL_LIST_INIT(portals, list()) //for use by portals
|
|
GLOBAL_LIST(cable_list) //Index for all cables, so that powernets don't have to look through the entire world all the time
|
|
GLOBAL_LIST(chemical_reactions_list) //list of all /datum/chemical_reaction datums. Used during chemical reactions
|
|
GLOBAL_LIST(chemical_reagents_list) //list of all /datum/reagent datums indexed by reagent id. Used by chemistry stuff
|
|
GLOBAL_LIST_INIT(landmarks_list, list()) //list of all landmarks created
|
|
GLOBAL_LIST_INIT(surgery_steps, list()) //list of all surgery steps |BS12
|
|
GLOBAL_LIST_INIT(side_effects, list()) //list of all medical sideeffects types by thier names |BS12
|
|
GLOBAL_LIST_INIT(mechas_list, list()) //list of all mechs. Used by hostile mobs target tracking.
|
|
GLOBAL_LIST_INIT(joblist, list()) //list of all jobstypes, minus borg and AI
|
|
GLOBAL_LIST_INIT(airlocks, list()) //list of all airlocks
|
|
GLOBAL_LIST_INIT(singularities, list()) //list of all singularities
|
|
GLOBAL_LIST_INIT(janitorial_equipment, list()) //list of janitorial equipment
|
|
GLOBAL_LIST_INIT(crafting_recipes, list()) //list of all crafting recipes
|
|
GLOBAL_LIST_INIT(prisoncomputer_list, list())
|
|
GLOBAL_LIST_INIT(celltimers_list, list()) // list of all cell timers
|
|
GLOBAL_LIST_INIT(cell_logs, list())
|
|
GLOBAL_LIST_INIT(navigation_computers, list())
|
|
|
|
GLOBAL_LIST_INIT(all_areas, list())
|
|
GLOBAL_LIST_INIT(all_unique_areas, list()) // List of all unique areas. AKA areas with there_can_be_many = FALSE
|
|
GLOBAL_LIST_INIT(machines, list())
|
|
GLOBAL_LIST_INIT(rcd_list, list()) //list of Rapid Construction Devices.
|
|
|
|
GLOBAL_LIST_INIT(apcs, list())
|
|
GLOBAL_LIST_INIT(air_alarms, list())
|
|
GLOBAL_LIST_INIT(power_monitors, list())
|
|
GLOBAL_LIST_INIT(all_vent_pumps, list())
|
|
|
|
GLOBAL_LIST_INIT(navbeacons, list()) //list of all bot nagivation beacons, used for patrolling.
|
|
GLOBAL_LIST_INIT(deliverybeacons, list()) //list of all MULEbot delivery beacons.
|
|
GLOBAL_LIST_INIT(deliverybeacontags, list()) //list of all tags associated with delivery beacons.
|
|
|
|
GLOBAL_LIST_INIT(beacons, list())
|
|
GLOBAL_LIST_INIT(shuttle_caller_list, list()) //list of all communication consoles, comms consoles circuit and AIs, for automatic shuttle calls when there are none.
|
|
GLOBAL_LIST_INIT(tracked_implants, list()) //list of all current implants that are tracked to work out what sort of trek everyone is on. Sadly not on lavaworld not implemented...
|
|
GLOBAL_LIST_INIT(pinpointer_list, list()) //list of all pinpointers. Used to change stuff they are pointing to all at once.
|
|
GLOBAL_LIST_INIT(nuclear_uplink_list, list()) //list of all existing nuke ops uplinks
|
|
GLOBAL_LIST_INIT(abductor_equipment, list()) //list of all abductor equipment
|
|
GLOBAL_LIST_INIT(global_intercoms, list()) //list of all intercomms, across all z-levels
|
|
GLOBAL_LIST_INIT(global_radios, list()) //list of all radios, across all z-levels
|
|
|
|
GLOBAL_LIST_INIT(meteor_list, list()) //list of all meteors
|
|
GLOBAL_LIST_INIT(poi_list, list()) //list of points of interest for observe/follow
|
|
GLOBAL_LIST_INIT(active_jammers, list()) // List of active radio jammers
|
|
GLOBAL_LIST_EMPTY(ladders)
|
|
GLOBAL_LIST_EMPTY(mirrors) //list of all mirrors and mirror shields.
|
|
|
|
GLOBAL_LIST_INIT(active_diseases, list()) //List of Active disease in all mobs; purely for quick referencing.
|
|
|
|
GLOBAL_LIST_EMPTY(mob_spawners) // All mob_spawn objects
|
|
GLOBAL_LIST_EMPTY(explosive_walls)
|
|
|
|
GLOBAL_LIST_EMPTY(engine_beacon_list)
|
|
|
|
/// List of wire colors for each object type of that round. One for airlocks, one for vendors, etc.
|
|
GLOBAL_LIST_EMPTY(wire_color_directory) // This is an associative list with the `holder_type` as the key, and a list of colors as the value.
|