move all factions to defines

This commit is contained in:
Kashargul
2024-09-12 20:17:41 +02:00
parent 10dc8510b3
commit 8a3520e2e0
217 changed files with 572 additions and 449 deletions
+1 -1
View File
@@ -10,7 +10,7 @@ var/list/overminds = list()
see_in_dark = 8
invisibility = INVISIBILITY_OBSERVER
faction = "blob"
faction = FACTION_BLOB
var/obj/structure/blob/core/blob_core = null // The blob overmind's core
var/blob_points = 0
var/max_blob_points = 200
+1 -1
View File
@@ -9,7 +9,7 @@
var/color = "#FFFFFF" // The actual blob's color.
var/complementary_color = "#000000" //a color that's complementary to the normal blob color. Blob mobs are colored in this.
var/faction = "blob" // The blob's faction.
var/faction = FACTION_BLOB // The blob's faction.
var/attack_message = "The blob attacks you" // Base message the mob gets when blob_act() gets called on them by the blob. An exclaimation point is added to the end.
var/attack_message_living = null // Appended to attack_message, if the target fails isSynthetic() check.
@@ -14,7 +14,7 @@
attack_message = "The tide tries to swallow you"
attack_message_living = ", and you feel your skin dissolve"
attack_message_synth = ", and your external plating dissolves"
faction = "nanomachines"
faction = FACTION_NANOMACHINES
/datum/blob_type/grey_goo/on_emp(obj/structure/blob/B, severity)
B.adjust_integrity(-(20 / severity))