From 81b5e7bcd08cecb573af1e4b1216b20b7877341d Mon Sep 17 00:00:00 2001 From: eyespy <104491498+eyespy2222@users.noreply.github.com> Date: Fri, 12 May 2023 00:22:30 +1000 Subject: [PATCH] chocolate slimes no longer hurt you what it says on the tin. this just makes the damage chocolate slimes do when they attack you really small, as if it basically never hit you in the first place --- GainStation13/code/mobs/chocoslime.dm | 4 ++-- code/datums/components/crafting/craft.dm | 2 ++ 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/GainStation13/code/mobs/chocoslime.dm b/GainStation13/code/mobs/chocoslime.dm index 8e963585..df62f15f 100644 --- a/GainStation13/code/mobs/chocoslime.dm +++ b/GainStation13/code/mobs/chocoslime.dm @@ -29,8 +29,8 @@ maxHealth = 100 health = 100 obj_damage = 0 - melee_damage_lower = 1 - melee_damage_upper = 1 + melee_damage_lower = 0.001 + melee_damage_upper = 0.001 faction = list("slime") pass_flags = PASSTABLE move_to_delay = 7 diff --git a/code/datums/components/crafting/craft.dm b/code/datums/components/crafting/craft.dm index 35966e18..ba6e5228 100644 --- a/code/datums/components/crafting/craft.dm +++ b/code/datums/components/crafting/craft.dm @@ -39,10 +39,12 @@ CAT_SANDWICH, CAT_SOUP, CAT_SPAGHETTI, + CAT_MEGAFOODS, //GS13 change, big foods for bigger people -Eye ), CAT_DRINK = CAT_NONE, CAT_CLOTHING = CAT_NONE, CAT_CARPENTRY = CAT_NONE, + ) var/cur_category = CAT_NONE