Merge pull request #744 from MalricB/euthanasia

Makes bloodsuckers get thralls every 5 levels instead of 10 + nerfs thrall recuperate (also points stakes.dm to the right path)
This commit is contained in:
Dahlular
2020-12-06 13:33:55 -07:00
committed by GitHub
3 changed files with 3 additions and 3 deletions
@@ -25,7 +25,7 @@
/obj/item/stake/
name = "wooden stake"
desc = "A simple wooden stake carved to a sharp point."
icon = 'icons/obj/items_and_weapons.dmi'
icon = 'icons/obj/stake.dmi'
icon_state = "wood" // Inventory Icon
item_state = "wood" // In-hand Icon
lefthand_file = 'icons/mob/inhands/weapons/melee_lefthand.dmi' // File for in-hand icon
@@ -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)