Files
vgstation13/code/modules/projectiles/ammunition/speedloaders.dm
Orzorn 3cb4e56ccf Adds Nagant and Obrez, as well as 7.62x55 ammo. Nagant can be spawned by summon guns.
modified:   code/game/gamemodes/wizard/rightandwrong.dm
	modified:   code/game/objects/items/weapons/twohanded.dm
	modified:   code/modules/projectiles/ammunition/boxes.dm
	modified:   code/modules/projectiles/ammunition/bullets.dm
	modified:   code/modules/projectiles/ammunition/speedloaders.dm
	new file:   code/modules/projectiles/guns/projectile/nagant.dm
	modified:   code/modules/projectiles/projectile/bullets.dm
	modified:   icons/mob/back.dmi
	modified:   icons/mob/in-hand/left/guninhands_left.dmi
	modified:   icons/mob/in-hand/right/guninhands_right.dmi
	modified:   icons/obj/ammo.dmi
	modified:   icons/obj/gun.dmi
	new file:   sound/weapons/nagant.ogg
	new file:   sound/weapons/nagantreload.ogg
	new file:   sound/weapons/obrez.ogg
2015-09-05 15:33:53 -05:00

39 lines
1.4 KiB
Plaintext

//Speedloaders function more like boxes than mags, in that they load bullets but aren't loaded themselves into guns
//A speedloader has no fumble, though. This allows you to load guns quickly.
//TODO: Add an antag speedloader item to the ammo bundle for the revolver
/obj/item/ammo_storage/speedloader
desc = "A speedloader, used to load a gun without any of that annoying fumbling."
exact = 0 //load anything in the class!
/obj/item/ammo_storage/speedloader/c38
name = "speed loader (.38)"
icon_state = "38"
ammo_type = "/obj/item/ammo_casing/c38"
max_ammo = 6
multiple_sprites = 1
/obj/item/ammo_storage/speedloader/c38/empty //this is what's printed by the autolathe, since the lathe also does boxes now
starting_ammo = 0
/obj/item/ammo_storage/speedloader/a357 //now the traitors can do it too
name = "speed loader (.357)"
desc = "A speedloader, used to load a gun without any of that annoying fumbling. This one appears to have a small 'S' embossed on the side."
icon_state = "s357"
ammo_type = "/obj/item/ammo_casing/a357"
max_ammo = 7
multiple_sprites = 1
/obj/item/ammo_storage/speedloader/a357/empty
starting_ammo = 0
/obj/item/ammo_storage/speedloader/a762x55
name = "clip (7.62x55mmR)"
icon_state = "c762x55"
ammo_type = "/obj/item/ammo_casing/a762x55"
max_ammo = 5
multiple_sprites = 1
/obj/item/ammo_storage/speedloader/a762x55/empty
starting_ammo = 0