mirror of
https://github.com/ParadiseSS13/Paradise.git
synced 2026-08-22 19:47:22 +01:00
More Brooms and Horsemasks and Jerseys
Adds 2 Horsemasks to the AutoDrobe's hacked items list. Adds 2 new crates to cargo: Team Jerseys Crate and Polo Supply Crate. - Team Jerseys Crate (15 supply points) contains 4 red jerseys, 4 blue jerseys, and 1 beach ball - Polo Supply Crate (20 supply points) contains 6 brooms, 6 horse masks (to put on the brooms), and 1 beach ball Adds new jerseys: an alternative to athletic shorts that come in red and blue. Red team is the NT Phi-ghters, Blue is the NT Pi-rates. Show your team spirit today!
This commit is contained in:
@@ -1312,3 +1312,37 @@ var/list/all_supply_groups = list(supply_emergency,supply_security,supply_engine
|
||||
/obj/item/weapon/lipstick/random)
|
||||
cost = 30 //Lots of very expensive items. You gotta pay up to look good!
|
||||
containername = "formal-wear crate"
|
||||
|
||||
/datum/supply_packs/misc/teamcolors //For team sports like space polo
|
||||
name = "Team Jerseys Crate"
|
||||
// 4 red jerseys, 4 blue jerseys, and 1 beach ball
|
||||
contains = list(/obj/item/clothing/under/color/red/jersey,
|
||||
/obj/item/clothing/under/color/red/jersey,
|
||||
/obj/item/clothing/under/color/red/jersey,
|
||||
/obj/item/clothing/under/color/red/jersey,
|
||||
/obj/item/clothing/under/color/blue/jersey,
|
||||
/obj/item/clothing/under/color/blue/jersey,
|
||||
/obj/item/clothing/under/color/blue/jersey,
|
||||
/obj/item/clothing/under/color/blue/jersey,
|
||||
/obj/item/weapon/beach_ball)
|
||||
cost = 15
|
||||
containername = "team jerseys crate"
|
||||
|
||||
/datum/supply_packs/misc/polo //For space polo! Or horsehead Quiditch
|
||||
name = "Polo Supply Crate"
|
||||
// 6 brooms, 6 horse masks for the brooms, and 1 beach ball
|
||||
contains = list(/obj/item/weapon/twohanded/staff/broom,
|
||||
/obj/item/weapon/twohanded/staff/broom,
|
||||
/obj/item/weapon/twohanded/staff/broom,
|
||||
/obj/item/weapon/twohanded/staff/broom,
|
||||
/obj/item/weapon/twohanded/staff/broom,
|
||||
/obj/item/weapon/twohanded/staff/broom,
|
||||
/obj/item/clothing/mask/horsehead,
|
||||
/obj/item/clothing/mask/horsehead,
|
||||
/obj/item/clothing/mask/horsehead,
|
||||
/obj/item/clothing/mask/horsehead,
|
||||
/obj/item/clothing/mask/horsehead,
|
||||
/obj/item/clothing/mask/horsehead,
|
||||
/obj/item/weapon/beach_ball)
|
||||
cost = 20
|
||||
containername = "polo supply crate"
|
||||
Reference in New Issue
Block a user