thralls recuperate costs more + vassals every 5 levels

whoops
This commit is contained in:
CygnusB
2020-12-05 14:22:59 -03:00
parent 6482f4182a
commit 5a4cd0709b
2 changed files with 2 additions and 2 deletions
@@ -255,7 +255,7 @@
if(user.blood_volume < convert_cost + 5)
to_chat(user, "<span class='notice'>You don't have enough blood to initiate the Dark Communion with [target].</span>")
return
if(!bloodsuckerdatum || bloodsuckerdatum.vassals.len * 10 > bloodsuckerdatum.vamplevel)
if(!bloodsuckerdatum || bloodsuckerdatum.vassals.len * 5 > bloodsuckerdatum.vamplevel)
to_chat(user, "<span class='notice'>Your power is yet too weak to bring more vassals under your control....</span>")
return
// Prep...
@@ -3,7 +3,7 @@
desc = "Slowly heal brute damage while active. This process is exhausting, and requires some of your tainted blood."
button_icon_state = "power_recup"
amToggle = TRUE
bloodcost = 5
bloodcost = 30
cooldown = 100
/datum/action/bloodsucker/vassal/recuperate/CheckCanUse(display_error)