Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Zonespace27 committed Aug 24, 2023
1 parent d66c480 commit 9d35156
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/elements/bullet_trait/penetrating/heavy.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
id_arg_index = 3

/// For every turf this pierces, how much damage should this lose?
var/damage_lost_per_pen = 75
var/damage_lost_per_pen = 100
/// Typecache of things to annihilate if the bullet is on a tile with it
var/static/list/bullet_destroy_structures = typecacheof(list(
/obj/structure/surface,
Expand Down
4 changes: 4 additions & 0 deletions code/modules/projectiles/ammo_datums.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1627,6 +1627,10 @@
handful_state = "vulture_bullet"
sound_hit = 'sound/bullets/bullet_vulture_impact.ogg'

/datum/ammo/bullet/sniper/anti_materiel/vulture/on_hit_mob(mob/hit_mob, obj/item/projectile/bullet)
. = ..()
knockback(hit_mob, bullet, 30)

/datum/ammo/bullet/sniper/anti_materiel/vulture/set_bullet_traits()
. = ..()
LAZYADD(traits_to_give, list(
Expand Down
1 change: 1 addition & 0 deletions code/modules/projectiles/guns/boltaction.dm
Original file line number Diff line number Diff line change
Expand Up @@ -152,6 +152,7 @@
/datum/action/item_action/vulture,
)
has_openbolt_icon = FALSE
bolt_delay = 1 SECONDS
/// How far out people can tell the direction of the shot
var/fire_message_range = 22

Expand Down

0 comments on commit 9d35156

Please sign in to comment.