-
Notifications
You must be signed in to change notification settings - Fork 597
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upp req console, tank and cas printers (#6988)
# About the pull request spliting the work on HvH gamemode to more PRs for easier rewievs. when making this PR I was told req shuttle would be repalced with new system in a week, it has been few months so I am gona add upp shuttle in future PR # Explain why it's good for the game more flexible and properly instanciented consoles and its own printers and req for UPP is greate for making events <details> <summary>Screenshots & Videos</summary> Put screenshots and videos here with an empty line between the screenshots and the `<details>` tags. </details> # Changelog :cl: add: UPP req console, dropship part fabricato and tank part fabricator /:cl: --------- Co-authored-by: vincibrv <[email protected]> Co-authored-by: Serhey <[email protected]> Co-authored-by: harryob <[email protected]>
- Loading branch information
1 parent
30e6143
commit 300996b
Showing
26 changed files
with
1,519 additions
and
68 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
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
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,172 @@ | ||
/datum/supply_packs/upp/ammo_rounds_box_5_45x39mm | ||
name = "ammo box crate (5.45x39mm) (x600 rounds)" | ||
contains = list( | ||
/obj/item/ammo_box/rounds/type71, | ||
) | ||
cost = 20 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "5.45x39mm ammo crate" | ||
group = "UPP Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_rounds_box_5_45x39mm_ap | ||
name = "ammo box crate (5.45x39mm AP) (x600 rounds)" | ||
contains = list( | ||
/obj/item/ammo_box/rounds/type71/ap, | ||
) | ||
cost = 40 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "5.45x39mm AP ammo crate" | ||
group = "UPP Ammo" | ||
|
||
|
||
/datum/supply_packs/upp/ammo_8g_slug | ||
name = "Magazine box (Type 23, 20x slug)" | ||
contains = list( | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/slug, | ||
) | ||
cost = 10 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "Type 23 slug ammo crate" | ||
group = "UPP Ammo" | ||
|
||
/datum/supply_packs/ammo_8g_flechette | ||
name = "Magazine box (Type 23, 10x flechette)" | ||
contains = list( | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
/obj/item/ammo_magazine/handful/shotgun/heavy/flechette, | ||
) | ||
cost = 10 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "Type 23 flechette ammo crate" | ||
group = "UPP Ammo" | ||
|
||
|
||
/datum/supply_packs/upp/ammo_Type64_x10 | ||
name = "Magazine box (Type 64, 10x regular mags)" | ||
contains = list( | ||
/obj/item/ammo_box/magazine/type64, | ||
) | ||
cost = 20 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "Type 64 magazines crate" | ||
group = "UPP Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_Type71_box | ||
name = "Magazine box (Type 71, 10x regular mags)" | ||
contains = list( | ||
/obj/item/ammo_box/magazine/type71, | ||
) | ||
cost = 20 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "Type 71 magazines crate" | ||
group = "UPP Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_Type71_box_ap | ||
name = "Magazine box (Type 71, 10x AP mags)" | ||
contains = list( | ||
/obj/item/ammo_box/magazine/type71/ap, | ||
) | ||
cost = 40 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "Type 71 AP magazines crate" | ||
group = "UPP Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_m2c_upp | ||
name = "M2C ammunition crate (x2)" | ||
contains = list( | ||
/obj/item/ammo_magazine/m2c, | ||
/obj/item/ammo_magazine/m2c, | ||
) | ||
cost = 25 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "\improper m2c ammunition crate" | ||
group = "UPP Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_pkp_mags | ||
name = "Magazines (QYJ-72, 4x mags)" | ||
contains = list( | ||
/obj/item/ammo_magazine/pkp, | ||
/obj/item/ammo_magazine/pkp, | ||
/obj/item/ammo_magazine/pkp, | ||
/obj/item/ammo_magazine/pkp, | ||
) | ||
cost = 30 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "QYJ-72 magazines crate" | ||
group = "UPP Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_minigun_mags | ||
name = "Magazines (GSh-7.62, 4x mags)" | ||
contains = list( | ||
/obj/item/ammo_magazine/minigun, | ||
/obj/item/ammo_magazine/minigun, | ||
/obj/item/ammo_magazine/minigun, | ||
/obj/item/ammo_magazine/minigun, | ||
) | ||
cost = 30 | ||
containertype = /obj/structure/closet/crate/ammo | ||
containername = "GSh-7.62 magazines crate" | ||
group = "UPP Special Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_rpg_he | ||
name = "HJRA-12 HE Rocket Crate (x3)" | ||
contains = list( | ||
/obj/item/ammo_magazine/rocket/upp, | ||
/obj/item/ammo_magazine/rocket/upp, | ||
/obj/item/ammo_magazine/rocket/upp, | ||
) | ||
cost = 30 | ||
containertype = /obj/structure/closet/crate/explosives | ||
containername = "HJRA-12 HE Rocket Crate" | ||
group = "UPP Special Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_rpg_ap | ||
name = "HJRA-12 AP Rocket Crate (x3)" | ||
contains = list( | ||
/obj/item/ammo_magazine/rocket/upp/at, | ||
/obj/item/ammo_magazine/rocket/upp/at, | ||
/obj/item/ammo_magazine/rocket/upp/at, | ||
) | ||
cost = 30 | ||
containertype = /obj/structure/closet/crate/explosives | ||
containername = "HJRA-12 AP Rockets Crate" | ||
group = "UPP Special Ammo" | ||
|
||
/datum/supply_packs/upp/ammo_rpg_wp | ||
name = "HJRA-12 Extreme-Intensity Incendiary Rocket Crate (x3)" | ||
contains = list( | ||
/obj/item/ammo_magazine/rocket/upp/incen, | ||
/obj/item/ammo_magazine/rocket/upp/incen, | ||
/obj/item/ammo_magazine/rocket/upp/incen, | ||
) | ||
cost = 30 | ||
containertype = /obj/structure/closet/crate/explosives | ||
containername = "HJRA-12 Extreme-Intensity Incendiary Rocket Crate" | ||
group = "UPP Special Ammo" |
Oops, something went wrong.