Skip to content

Commit

Permalink
ditto
Browse files Browse the repository at this point in the history
  • Loading branch information
Tsunamico committed Sep 3, 2023
1 parent d8030ba commit 3a9774c
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions code/_globalvars/global_lists.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ GLOBAL_LIST_EMPTY(larva_burst_by_hive)
GLOBAL_LIST_INIT_TYPED(custom_huds_list, /datum/custom_hud, setup_all_huds())
GLOBAL_LIST_INIT_TYPED(custom_human_huds, /datum/custom_hud, setup_human_huds())

//Basically counts how many times the Almayer was hit by each weapon. Loggin' wack.
GLOBAL_LIST_INIT(ship_hits_tally, list(
"times_hit_missile" = 0,
"times_hit_railgun" = 0,
"times_hit_odc" = 0,
"times_hit_aaboiler" = 0,
))

//Ship's HP! ShipvsShip baybeee
GLOBAL_LIST_INIT(ship_health_vars, list(
"ship_hull_health" = 100,
"ship_systems_health" = 100,
))

//Since it didn't really belong in any other category, I'm putting this here
//This is for procs to replace all the goddamn 'in world's that are chilling around the code

Expand Down

0 comments on commit 3a9774c

Please sign in to comment.