mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-01-10 17:42:15 +00:00
* startup, expect like 50 unneeded icons, not bug free™️ * Hope works. Cloak works. Buffs for AI controlled. Faction fix. * map speed buffs, fixes resummon health decay * Adds roles. Adds Mirror walk. Nerfs revival, especialy for non antag summoned. * I am denser than bluespace ore * x2 antag cooldown, update desc for cloak * removes 66% burn damage resist from elites * honestly just knock that down * herald not speaking right, fuckup with max hp fix * Thanks hal! Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> * changes, changes, and more changes, oh my! * Update code/datums/status_effects/buffs.dm Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> * GC stuff * oh, and just one more thing * no gibtonite gaming * Huston we have a FUCKING PROBLEM * oopsy doopsy * but just one more thing (again, gc stuff) * Lets all elites speak their mind * NO LAVA * grab ghost, legion charge red. * dust the dusting from the code * no mirror cargo shuttle crossing * need to stop making small changes, x2 broodmother * herald no longer crashes the MC * Lower broodmother cooldown, herald down 5 brute and , legionare gets more smoke and thermals, pandora gets chasers * remove extra brackets, x 2 on aoe squares * pandora now respects factions * fixes teleporting to tumor if reactivated by someone else. Herald has light, boost elites make message * requested changes * mirroring a wanted change Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com> Co-authored-by: Charlie <69320440+hal9000PR@users.noreply.github.com> Co-authored-by: AffectedArc07 <25063394+AffectedArc07@users.noreply.github.com>
58 lines
3.7 KiB
Plaintext
58 lines
3.7 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(alert_consoles) // Station alert consoles, /obj/machinery/computer/station_alert
|
|
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.
|