Merge pull request #70 from evilew/tweaking

mage hand, map tweaks, fatty loot
This commit is contained in:
evilew
2025-01-19 21:42:33 +01:00
committed by GitHub
17 changed files with 1587 additions and 654 deletions
+1 -1
View File
@@ -645,7 +645,7 @@ GLOBAL_LIST_INIT(valid_plushie_paths, valid_plushie_paths())
/obj/item/toy/plush/beeplushie
name = "bee plushie"
desc = "A cute toy that resembles an even cuter bee."
icon_state = "plushie_bee"
icon_state = "plushie_h" //GS13 - wrong sprite name
attack_verb = list("stung")
gender = FEMALE
squeak_override = list('modular_citadel/sound/voice/scream_moth.ogg' = 1)
@@ -31,7 +31,7 @@
threat = 2
family_heirlooms = list(
/obj/item/book/manual/wiki/security_space_law,
/obj/item/book/manual/gato_spacelaw,
/obj/item/clothing/head/beret/sec
)
@@ -84,7 +84,7 @@
. = ..()
if(ishuman(mover))
var/mob/living/carbon/human/H = mover
if(H.nutrition >= NUTRITION_LEVEL_FAT)
if(H.fatness >= 1000) //GS13 edit - having over 1000 BFI lets you through
H.visible_message("<span class='warning'>[H] pushes through [src]!</span>", "<span class='notice'>You've seen and eaten worse than this.</span>")
return TRUE
else