forked from cmss13-devs/cmss13
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updating UPP crates, some paper stuff
- Loading branch information
Showing
5 changed files
with
145 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,4 +4,3 @@ | |
containertype = null | ||
containername = "large crate" | ||
group = "UPP" | ||
isUPPCrate = TRUE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/datum/supply_packs/upp/ammo_mortar_he | ||
name = "M402 mortar shells crate (x6 HE)" | ||
cost = 20 | ||
contains = list( | ||
/obj/item/mortar_shell/he, | ||
/obj/item/mortar_shell/he, | ||
/obj/item/mortar_shell/he, | ||
/obj/item/mortar_shell/he, | ||
/obj/item/mortar_shell/he, | ||
/obj/item/mortar_shell/he, | ||
) | ||
containertype = /obj/structure/closet/crate/secure/mortar_ammo | ||
containername = "\improper M402 mortar HE shells crate" | ||
group = "UPP Mortar" | ||
|
||
/datum/supply_packs/upp/ammo_mortar_incend | ||
name = "M402 mortar shells crate (x6 Incend)" | ||
cost = 20 | ||
contains = list( | ||
/obj/item/mortar_shell/incendiary, | ||
/obj/item/mortar_shell/incendiary, | ||
/obj/item/mortar_shell/incendiary, | ||
/obj/item/mortar_shell/incendiary, | ||
/obj/item/mortar_shell/incendiary, | ||
/obj/item/mortar_shell/incendiary, | ||
) | ||
containertype = /obj/structure/closet/crate/secure/mortar_ammo | ||
containername = "\improper M402 mortar incendiary shells crate" | ||
group = "UPP Mortar" | ||
|
||
/datum/supply_packs/upp/ammo_mortar_flare | ||
name = "M402 mortar shells crate (x6 Flare/Camera)" | ||
cost = 20 | ||
contains = list( | ||
/obj/item/mortar_shell/flare, | ||
/obj/item/mortar_shell/flare, | ||
/obj/item/mortar_shell/flare, | ||
/obj/item/mortar_shell/flare, | ||
/obj/item/mortar_shell/flare, | ||
/obj/item/mortar_shell/flare, | ||
) | ||
containertype = /obj/structure/closet/crate/secure/mortar_ammo | ||
containername = "\improper M402 mortar flare shells crate" | ||
group = "UPP Mortar" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters