next set of spans (#16434)

* next set of spans

* some more

* next

* next

* next

* .

* text...

* next... rest soon

* .

* .

* ok last set for the night

* .

* .

* .

* .

* some more

* next

* next

* all for now

* .

* some more easy ones

* some more easy ones

* .

* .

* some more bolds

* oups auto complete moment

* add the remaining spans

* this as well

* this as well

* .

* .,

* resync them properly
This commit is contained in:
Kashargul
2024-10-16 23:37:27 +02:00
committed by GitHub
parent 6275972fef
commit b594520a74
604 changed files with 2801 additions and 2638 deletions
@@ -7,7 +7,7 @@
if(locked && tamper_proof && health <= Proj.damage)
if(tamper_proof == 2) // Mainly used for events to prevent any chance of opening the box improperly.
visible_message(span_red("<b>The anti-tamper mechanism of [src] triggers an explosion!</b>"))
visible_message(span_bolddanger("The anti-tamper mechanism of [src] triggers an explosion!"))
var/turf/T = get_turf(src.loc)
explosion(T, 0, 0, 0, 1) // Non-damaging, but it'll alert security.
qdel(src)
@@ -15,18 +15,18 @@
var/open_chance = rand(1,5)
switch(open_chance)
if(1)
visible_message(span_red("<b>The anti-tamper mechanism of [src] causes an explosion!</b>"))
visible_message(span_bolddanger("The anti-tamper mechanism of [src] causes an explosion!"))
var/turf/T = get_turf(src.loc)
explosion(T, 0, 0, 0, 1) // Non-damaging, but it'll alert security.
qdel(src)
if(2 to 4)
visible_message(span_red("<b>The anti-tamper mechanism of [src] causes a small fire!</b>"))
visible_message(span_boldwarning("The anti-tamper mechanism of [src] causes a small fire!"))
for(var/atom/movable/A as mob|obj in src) // For every item in the box, we spawn a pile of ash.
new /obj/effect/decal/cleanable/ash(src.loc)
new /obj/fire(src.loc)
qdel(src)
if(5)
visible_message(span_green("<b>The anti-tamper mechanism of [src] fails!</b>"))
visible_message(span_infoplain(span_green(span_bold("The anti-tamper mechanism of [src] fails!"))))
return
..()