mirror of
https://github.com/vgstation-coders/vgstation13.git
synced 2025-12-10 10:21:11 +00:00
dragon's breath and HE shells (#25569)
* dragon's breath and HE shells * () * fixes materials * the power of copypaste * numbers are HARD
This commit is contained in:
@@ -361,10 +361,26 @@
|
||||
/datum/design/shotgun_shell/blank
|
||||
name = "12ga. blank shell"
|
||||
desc = "A blank 12-gauge shotgun shell that contains no projectile material."
|
||||
id = "dartshell"
|
||||
id = "blankshell"
|
||||
build_type = AMMOLATHE
|
||||
materials = list(MAT_IRON = 250)
|
||||
build_path = /obj/item/ammo_casing/shotgun/blank
|
||||
|
||||
/datum/design/shotgun_shell/dragonsbreath
|
||||
name = "12ga. dragon's breath shell"
|
||||
desc = "A 12 gauge shell filled with an incendiary mixture, for lighting up dark areas or setting things on fire."
|
||||
id = "dragonshell"
|
||||
build_type = AMMOLATHE
|
||||
materials = list(MAT_IRON = 500, MAT_PLASMA = 2000)
|
||||
build_path = /obj/item/ammo_casing/shotgun/dragonsbreath
|
||||
|
||||
/datum/design/shotgun_shell/frag
|
||||
name = "12ga. frag shell"
|
||||
desc = "A 12 gauge shell filled with a high-explosive mixture, for heavy anti-personnel usage."
|
||||
id = "fragshell"
|
||||
build_type = AMMOLATHE
|
||||
materials = list(MAT_IRON = 500, MAT_PLASMA = 8000)
|
||||
build_path = /obj/item/ammo_casing/shotgun/frag
|
||||
|
||||
//Box ammunition
|
||||
/datum/design/ammo_b380auto
|
||||
@@ -462,6 +478,22 @@
|
||||
build_type = AMMOLATHE
|
||||
materials = list(MAT_IRON = 8000)
|
||||
build_path = /obj/item/ammo_storage/box/flare
|
||||
|
||||
/datum/design/ammo_shotgun/dragonsbreath
|
||||
name = "Ammunition box (12ga. dragon's breath)"
|
||||
desc = "A box of 12-gauge dragon's breath shells."
|
||||
id = "ammo_12ga_flare"
|
||||
build_type = AMMOLATHE
|
||||
materials = list(MAT_IRON = 8000, MAT_PLASMA = 32000)
|
||||
build_path = /obj/item/weapon/storage/box/dragonsbreathshells
|
||||
|
||||
/datum/design/ammo_shotgun/frag
|
||||
name = "Ammunition box (12ga. frag)"
|
||||
desc = "A box of 12-gauge explosive shells."
|
||||
id = "ammo_12ga_flare"
|
||||
build_type = AMMOLATHE
|
||||
materials = list(MAT_IRON = 8000, MAT_PLASMA = 128000)
|
||||
build_path = /obj/item/weapon/storage/box/fragshells
|
||||
|
||||
/datum/design/ammo_12mm
|
||||
name = "Ammunition box (12mm)"
|
||||
|
||||
Reference in New Issue
Block a user