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:
SonixApache
2020-01-14 12:28:21 +01:00
committed by adrian
parent b7e9da21cf
commit 72e11d06c9
7 changed files with 107 additions and 13 deletions

View File

@@ -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)"