mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-08-29 16:18:01 +01:00
## About The Pull Request Adds a couple really expensive shuttles. - The gold version of Oh Hi Daniel, being a joke and expensive but not nearly as expensive as - The Vigilante, a long-range syndicate transport shuttle with a cosy layout and also some mobs and a sentience balloon. (Also contains a unique weapon) - The Millionaire Shuttle, a very gold shuttle that's supposed to feel fancy, and also it has some silly custom items. Also adds a "medical bay" pod to the cluster of escape pods, along with making it require an emagged console. Also reduces the breacher's price considering that in hindsight it's not _that_ good of a shuttle. ## Why It's Good For The Game The last time I made some shuttles people kinda liked them, so I decided to make a couple more. ## Proof Of Testing Shuttles are able to be bought and they work just fine. StrongDMM screenshots follow: Gold Daniel - <img width="320" height="352" alt="image" src="https://github.com/user-attachments/assets/cbd57b08-35f3-47e3-929e-629f6a59fd00" /> Vigilante - <img width="896" height="1376" alt="image" src="https://github.com/user-attachments/assets/f5f66209-7271-45b8-938b-4cbad8fbf3ac" /> Millionaire - <img width="608" height="1184" alt="image" src="https://github.com/user-attachments/assets/cd28f2a9-2241-4e01-8516-e8e644a451e0" /> ## Changelog 🆑 add: Adds a couple more dumb expensive evac shuttles. balance: Makes the escape pod cluster shuttle emag only. /🆑 --------- Co-authored-by: Cabbage <supredoode@gmail.com>
46 lines
1.8 KiB
Plaintext
46 lines
1.8 KiB
Plaintext
/obj/item/storage/box/disks_plantgene
|
|
name = "plant data disks box"
|
|
illustration = "disk_kit"
|
|
|
|
/obj/item/storage/box/disks_plantgene/PopulateContents()
|
|
for(var/i in 1 to 7)
|
|
new /obj/item/disk/computer/plantgene(src)
|
|
|
|
// Syndicate Admiral's Medals box
|
|
/obj/item/storage/lockbox/medal/bubber/synd
|
|
name = "syndicate medal box"
|
|
desc = "A locked box used to store medals of honor."
|
|
icon = 'modular_zubbers/icons/obj/box.dmi'
|
|
icon_state = "syndbox+l"
|
|
inhand_icon_state = "syringe_kit"
|
|
lefthand_file = 'icons/mob/inhands/equipment/medical_lefthand.dmi'
|
|
righthand_file = 'icons/mob/inhands/equipment/medical_righthand.dmi'
|
|
w_class = WEIGHT_CLASS_NORMAL
|
|
req_access = list(ACCESS_SYNDICATE_LEADER)
|
|
icon_locked = "syndbox+l"
|
|
icon_closed = "syndbox"
|
|
icon_broken = "syndbox+b"
|
|
icon_open = "syndboxopen"
|
|
|
|
/obj/item/storage/lockbox/medal/bubber/synd/PopulateContents()
|
|
new /obj/item/clothing/accessory/medal/bubber/syndicate(src)
|
|
new /obj/item/clothing/accessory/medal/bubber/syndicate/espionage(src)
|
|
new /obj/item/clothing/accessory/medal/bubber/syndicate/interrogation(src)
|
|
new /obj/item/clothing/accessory/medal/bubber/syndicate/intelligence(src)
|
|
new /obj/item/clothing/accessory/medal/bubber/syndicate/diligence(src)
|
|
new /obj/item/clothing/accessory/medal/bubber/syndicate/communications(src)
|
|
|
|
/obj/item/storage/box/papersack/millionaire_bonus
|
|
name = "bonus sack"
|
|
desc = "A small bag of goodies awarded to employees."
|
|
design_choice = "NanotrasenStandard"
|
|
|
|
/obj/item/storage/box/papersack/millionaire_bonus/PopulateContents()
|
|
new /obj/item/stack/spacecash/c5000(src)
|
|
new /obj/item/coin/adamantine(src)
|
|
new /obj/item/food/cookie(src)
|
|
new /obj/item/food/chocolatebar(src)
|
|
new /obj/item/pen/fourcolor(src)
|
|
new /obj/item/reagent_containers/cup/glass/flask(src)
|
|
new /obj/item/soap/nanotrasen(src)
|