-
Notifications
You must be signed in to change notification settings - Fork 95
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
M60 retouch, mostly lore, a little statistical #158
Changes from all commits
7a3c255
1b02e02
b3fc3b3
af61efc
0fe3212
36826e8
b4c2398
7ced9ac
5152714
fd4815a
a1064c2
aa837d9
aaa64d4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,16 +152,20 @@ | |
accurate_range = 12 | ||
|
||
/datum/ammo/bullet/m60 | ||
name = "M60 bullet" | ||
name = "frangible machine gun bullet" | ||
headshot_state = HEADSHOT_OVERLAY_MEDIUM | ||
|
||
accuracy = HIT_ACCURACY_TIER_2 | ||
accuracy_var_low = PROJECTILE_VARIANCE_TIER_8 | ||
accuracy_var_high = PROJECTILE_VARIANCE_TIER_6 | ||
accurate_range = 12 | ||
damage = 45 //7.62x51 is scary | ||
penetration= ARMOR_PENETRATION_TIER_6 | ||
shrapnel_chance = SHRAPNEL_CHANCE_TIER_2 | ||
damage = 55 //7.62x51 is scary, redux... | ||
penetration = 0 //...but frangibles suck ass at punching through armor... | ||
shrapnel_chance = 0 //...and they tend to disintegrate into dust. | ||
|
||
/datum/ammo/bullet/m60/on_hit_mob(mob/entity, obj/projectile/bullet) | ||
slowdown(entity, bullet) | ||
pushback(entity, bullet, 3) //at close range you can juggle back a horde which should be nice. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is pretty insane 👀 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. i dunno how to custom tune it |
||
|
||
/datum/ammo/bullet/pkp | ||
name = "machinegun bullet" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a reason this should be frangible rather than just ball?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
zero AP and such. FMJ I think has like AP5 or AP10 or something elsewhere