Skip to content

Commit

Permalink
Merge pull request #88 from Lhars/Salt-PR-More-Like-Garlic-PR
Browse files Browse the repository at this point in the history
Removes the Vampire Flaw
  • Loading branch information
TheGreatKitsune authored Nov 27, 2024
2 parents 652e159 + 61791a1 commit 1794cc9
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions code/datums/character_flaw/_character_flaw.dm
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ GLOBAL_LIST_INIT(character_flaws, list(
"Cyclops (L)"=/datum/charflaw/noeyel,
"Wood Arm (R)"=/datum/charflaw/limbloss/arm_r,
"Wood Arm (L)"=/datum/charflaw/limbloss/arm_l,
"Cursed Blood (Vampire)"=/datum/charflaw/vampire,
//"Cursed Blood (Vampire)"=/datum/charflaw/vampire,
"Random or No Flaw"=/datum/charflaw/randflaw,
"No Flaw (3 TRIUMPHS)"=/datum/charflaw/noflaw
))
Expand Down Expand Up @@ -480,7 +480,7 @@ GLOBAL_LIST_INIT(character_flaws, list(
for(var/atom/movable/content in movable.contents)
mammons += get_mammons_in_atom(content)
return mammons

/***
/datum/charflaw/vampire
name = "Cursed Blood (Vampire)"
desc = "You were gifted or cursed by Zizo, A lone vampire forced to roam the lands and drink blood to survive, albeit 'immortal'. Whether you are Ancient or a new vampire, you are no lord nor spawn, and you do not have any reason to antagonize the mortals beyond occasionally finding blood to keep you going. (This doesn't give you the rights to be a antag.)"
Expand All @@ -491,3 +491,4 @@ GLOBAL_LIST_INIT(character_flaws, list(
var/mob/living/carbon/human/H = user
var/datum/antagonist/vampirelord/lesser/secret/new_vamp = new ()
H.mind.add_antag_datum(new_vamp)
***/

0 comments on commit 1794cc9

Please sign in to comment.