Skip to content

Commit

Permalink
tweak: Bloodswell Buff (ss220-space#3790)
Browse files Browse the repository at this point in the history
  • Loading branch information
Gottfrei authored and SuhEugene committed Nov 6, 2023
1 parent b35ab09 commit b23c5c0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
16 changes: 8 additions & 8 deletions code/datums/status_effects/buffs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -513,10 +513,10 @@

ADD_TRAIT(owner, TRAIT_CHUNKYFINGERS, VAMPIRE_TRAIT)
var/mob/living/carbon/human/H = owner
H.dna.species.brute_mod *= 0.5
H.dna.species.burn_mod *= 0.8
H.dna.species.stamina_mod *= 0.5
H.dna.species.stun_mod *= 0.5
H.dna.species.brute_mod *= 0.3
H.dna.species.burn_mod *= 0.6
H.dna.species.stamina_mod *= 0.3
H.dna.species.stun_mod *= 0.3

var/datum/antagonist/vampire/V = owner.mind.has_antag_datum(/datum/antagonist/vampire)
if(V.get_ability(/datum/vampire_passive/blood_swell_upgrade))
Expand All @@ -532,10 +532,10 @@

REMOVE_TRAIT(owner, TRAIT_CHUNKYFINGERS, VAMPIRE_TRAIT)
var/mob/living/carbon/human/H = owner
H.dna.species.brute_mod /= 0.5
H.dna.species.burn_mod /= 0.8
H.dna.species.stamina_mod /= 0.5
H.dna.species.stun_mod /= 0.5
H.dna.species.brute_mod /= 0.3
H.dna.species.burn_mod /= 0.6
H.dna.species.stamina_mod /= 0.3
H.dna.species.stun_mod /= 0.3

if(bonus_damage_applied)
bonus_damage_applied = FALSE
Expand Down
2 changes: 1 addition & 1 deletion code/game/gamemodes/spaceninja/space_ninja.dm
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@

var/count = 1
var/ninjawin = TRUE
for(var/datum/objective/objective in ninja.objectives)
for(var/datum/objective/objective in ninja.get_all_objectives())
if(objective.check_completion())
text += "<br><B>Цель #[count]</B>: [objective.explanation_text] <font color='green'><B>Успех!</B></font>"
SSblackbox.record_feedback("nested tally", "ninja_objective", 1, list("[objective.type]", "SUCCESS"))
Expand Down

0 comments on commit b23c5c0

Please sign in to comment.