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:
ChesterTheCheesy
2021-03-12 10:11:06 +01:00
committed by GitHub
parent 344c6ff73b
commit f8d94708bb
7 changed files with 88 additions and 3 deletions

View File

@@ -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")