Skip to content

Commit

Permalink
updates to modern embed_data
Browse files Browse the repository at this point in the history
  • Loading branch information
CRITAWAKETS committed Feb 5, 2025
1 parent 01eaea5 commit dae99a5
Showing 1 changed file with 17 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,15 @@
ricochets_max = 0
ricochet_chance = 0
wound_bonus = -30
embedding = list(embed_chance=20, fall_chance=2, jostle_chance=2, ignore_throwspeed_threshold=TRUE, pain_stam_pct=0.4, pain_mult=3, jostle_pain_mult=5, rip_time=1 SECONDS)
embed_type = /datum/embed_data/bullet/c38/dual_stage
embed_falloff_tile = -1.5

/datum/embed_data/bullet/c38/dual_stage
embed_chance = 20
pain_mult = 2
jostle_pain_mult = 4
rip_time = 4 SECONDS

/obj/projectile/bullet/c38/dual_stage/fire(angle, atom/direct_target)
. = ..()
addtimer(CALLBACK(src, PROC_REF(speed_up)), 0.4 SECONDS)
Expand Down Expand Up @@ -43,10 +49,19 @@
ricochet_chance = 0
weak_against_armour = TRUE
wound_bonus = -30
embedding = list(embed_chance=50, fall_chance=1, jostle_chance=0, ignore_throwspeed_threshold=TRUE, pain_stam_pct=0.2, pain_mult=1, jostle_pain_mult=2, remove_pain_mult = 2, rip_time=1 SECONDS)
embed_type = /datum/embed_data/bullet/c38/maginull
embed_falloff_tile = -2.5
shrapnel_type = /obj/item/shrapnel/bullet/maginull

/datum/embed_data/bullet/c38/maginull
embed_chance = 50
fall_chance = 1
jostle_chance = 0
pain_stam_pct = 0.2
pain_mult = 1
jostle_pain_mult = 2
rip_time = 1 SECONDS

/obj/item/shrapnel/bullet/maginull
var/mob/living/carbon/spiked_mob

Expand Down

0 comments on commit dae99a5

Please sign in to comment.