mirror of
https://github.com/yogstation13/Yogstation.git
synced 2025-02-26 09:04:50 +00:00
Mothpeople can now use flight potions (#11040)
* Update sprite_accessories.dm * Update necropolis_chests.dm * Update emote.dm * Update species.dm * Update global_lists.dm * Update flavor_misc.dm * Add files via upload * makes wings uglier as per jamie's request * EEEEEEEEE * Delete moth_wingsopen.dmi * kill me * Update emote.dm
This commit is contained in:
@@ -616,7 +616,7 @@
|
||||
if(iscarbon(M) && M.stat != DEAD)
|
||||
var/mob/living/carbon/C = M
|
||||
var/holycheck = ishumanbasic(C)
|
||||
if(!(holycheck || islizard(C)) || reac_volume < 5) // implying polysmorphs are holy //as with all things,
|
||||
if(!(holycheck || islizard(C) || ismoth(C)) || reac_volume < 5) // implying polysmorphs are holy //as with all things,
|
||||
if(method == INGEST && show_message)
|
||||
to_chat(C, "<span class='notice'><i>You feel nothing but a terrible aftertaste.</i></span>")
|
||||
return ..()
|
||||
@@ -629,6 +629,9 @@
|
||||
if(islizard(C))
|
||||
to_chat(C, "<span class='notice'>You feel blessed... by... something?</span>")
|
||||
ADD_TRAIT(C, TRAIT_HOLY, SPECIES_TRAIT)
|
||||
if(ismoth(C))
|
||||
to_chat(C, "<span class='notice'>Your wings feel.... stronger?</span>")
|
||||
ADD_TRAIT(C, TRAIT_HOLY, SPECIES_TRAIT)
|
||||
playsound(C.loc, 'sound/items/poster_ripped.ogg', 50, TRUE, -1)
|
||||
C.adjustBruteLoss(20)
|
||||
C.emote("scream")
|
||||
|
||||
Reference in New Issue
Block a user