mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-15 04:32:42 +00:00
Co-authored-by: Changelogs <action@github.com> Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com> Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com> Co-authored-by: Kashargul <KashL@t-online.de>
40 lines
1.2 KiB
Plaintext
40 lines
1.2 KiB
Plaintext
/obj/item/gun/projectile/altevian
|
|
name = "Altevian Rivet Repeater"
|
|
desc = "An offensive ballistic weapon designed by the Altevian Hegemony commonly used for decompression and structural damage tactics. It's also pretty effective at personnel damage."
|
|
magazine_type = /obj/item/ammo_magazine/sam48
|
|
allowed_magazines = list(/obj/item/ammo_magazine/sam48)
|
|
projectile_type = /obj/item/projectile/bullet/sam48
|
|
icon_state = "altevian-repeater"
|
|
item_state = "altevian-repeater"
|
|
caliber = ".48"
|
|
load_method = MAGAZINE
|
|
|
|
/obj/item/gun/projectile/altevian/update_icon()
|
|
if(ammo_magazine)
|
|
icon_state = initial(icon_state)
|
|
else
|
|
icon_state = "[initial(icon_state)]-e"
|
|
|
|
/obj/item/ammo_magazine/sam48
|
|
name = "ammo clip (SAM .48)"
|
|
icon_state = "sam48"
|
|
desc = "Standard Altevian Munition clip, caliber .48."
|
|
caliber = ".48"
|
|
ammo_type = /obj/item/ammo_casing/sam48
|
|
mag_type = MAGAZINE
|
|
matter = list(MAT_STEEL = 240)
|
|
max_ammo = 5
|
|
multiple_sprites = 1
|
|
|
|
/obj/item/ammo_casing/sam48
|
|
desc = "A .48 bolt casing."
|
|
caliber = ".48"
|
|
projectile_type = /obj/item/projectile/bullet/sam48
|
|
matter = list(MAT_STEEL = 30)
|
|
|
|
/obj/item/projectile/bullet/sam48
|
|
fire_sound = 'sound/weapons/gunshot4.ogg'
|
|
icon_state = "sam48"
|
|
damage = 49
|
|
hud_state = "pistol_special"
|