mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2025-12-24 16:41:48 +00:00
* Refactors smiting, adds smite build mode (#55327) Refactors smiting out from being a large switch/case into datums. Adds a new smite option to build mode. This lets you choose a smite and rapidly apply it to a lot of people, presumably for EORG. Requested for by...one of the admins, I forget which. * Refactors smiting, adds smite build mode Co-authored-by: Jared-Fogle <35135081+Jared-Fogle@users.noreply.github.com>
8 lines
174 B
Plaintext
8 lines
174 B
Plaintext
/// Fattens the target
|
|
/datum/smite/fat
|
|
name = "Fatten up"
|
|
|
|
/datum/smite/fat/effect(client/user, mob/living/target)
|
|
. = ..()
|
|
target.set_nutrition(NUTRITION_LEVEL_FAT * 2)
|