Skip to content

Commit

Permalink
Tweak flare incend fire stacks/damage
Browse files Browse the repository at this point in the history
  • Loading branch information
Drulikar committed Feb 1, 2024
1 parent 8393ddb commit 203a658
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions code/datums/ammo/misc.dm
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@
/datum/ammo/flare/set_bullet_traits()
. = ..()
LAZYADD(traits_to_give, list(
BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary)
BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary, stacks = 2.5)
))

/datum/ammo/flare/on_hit_mob(mob/M,obj/projectile/P)
Expand Down Expand Up @@ -156,11 +156,13 @@
name = "starshell ash"
icon_state = "starshell_bullet"
max_range = 5
damage = 2.5
flare_type = /obj/item/device/flashlight/flare/on/starshell_ash

/datum/ammo/flare/starshell/set_bullet_traits()
LAZYADD(traits_to_give, list(
BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff, /datum/element/bullet_trait_incendiary)
BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_iff),
BULLET_TRAIT_ENTRY(/datum/element/bullet_trait_incendiary, stacks = 1)
))

/datum/ammo/souto
Expand Down

0 comments on commit 203a658

Please sign in to comment.