Skip to content
This repository was archived by the owner on May 22, 2025. It is now read-only.

Commit f8d6307

Browse files
committed
Update thrall_tumor.dm
1 parent 980503d commit f8d6307

File tree

1 file changed

+5
-1
lines changed
  • yogstation/code/modules/antagonists/darkspawn/darkspawn_objects

1 file changed

+5
-1
lines changed

yogstation/code/modules/antagonists/darkspawn/darkspawn_objects/thrall_tumor.dm

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
var/organ_health = 3
1111
///Cached darkspawn team that gets the willpower
1212
var/datum/team/darkspawn/antag_team
13+
///How much willpower is granted by this tumor
14+
var/willpower_amount = 1
1315

1416
/obj/item/organ/shadowtumor/New()
1517
..()
@@ -33,7 +35,7 @@
3335
else
3436
organ_health = min(organ_health+0.5, 3)
3537
if(owner.stat != DEAD && antag_team)
36-
antag_team.willpower_progress(1)
38+
antag_team.willpower_progress(willpower_amount)
3739

3840
/obj/item/organ/shadowtumor/on_find(mob/living/finder)
3941
. = ..()
@@ -43,6 +45,8 @@
4345
//------------------------------Thrall version------------------------------------//
4446
////////////////////////////////////////////////////////////////////////////////////
4547
/obj/item/organ/shadowtumor/thrall
48+
//provides extra willpower because willpower was spent to thrall someone
49+
willpower_amount = 2
4650
///adds a cooldown to the resist so a thrall ipc or preternis can't weaponize it
4751
COOLDOWN_DECLARE(resist_cooldown)
4852
///How long the resist cooldown is

0 commit comments

Comments
 (0)