mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-04 14:01:22 +00:00
* Adds proto-kinetic accelerator modkit and proto-kinetic crusher trophy disks to the bitrunning vendor (#83825) ## About The Pull Request Adds disks to the bitrunning vendor that give the pka and pkc additional parts. I have no idea if any of these numbers are balanced, I am not good at balance, and these are just random numbers I came up with. If anyone has any recommendations on how to better order or price it, I would love to know. ## Why It's Good For The Game It gives people a way to test fights against megafauna using unique combinations of accelerator modkits and crusher trophies with less risks. ## Changelog 🆑 add: Added disks for accelerator modkits and crusher trophies to the bitrunning vendor /🆑 * Adds proto-kinetic accelerator modkit and proto-kinetic crusher trophy disks to the bitrunning vendor --------- Co-authored-by: BeagleGaming1 <56142455+BeagleGaming1@users.noreply.github.com>
57 lines
2.6 KiB
Plaintext
57 lines
2.6 KiB
Plaintext
/datum/orderable_item/bitrunning_tech
|
|
category_index = CATEGORY_BITRUNNING_TECH
|
|
|
|
/datum/orderable_item/bitrunning_tech/item_tier1
|
|
cost_per_order = 1000
|
|
item_path = /obj/item/bitrunning_disk/item/tier1
|
|
desc = "This disk contains a program that lets you equip a medical beamgun, a C4 explosive, or a box of infinite pizza."
|
|
|
|
/datum/orderable_item/bitrunning_tech/item_tier2
|
|
cost_per_order = 1500
|
|
item_path = /obj/item/bitrunning_disk/item/tier2
|
|
desc = "This disk contains a program that lets you equip a luxury medipen, a pistol, or an armour vest."
|
|
|
|
/datum/orderable_item/bitrunning_tech/item_tier3
|
|
cost_per_order = 2500
|
|
item_path = /obj/item/bitrunning_disk/item/tier3
|
|
desc = "This disk contains a program that lets you equip an advanced energy gun, a dual bladed energy sword, or a minibomb."
|
|
|
|
/datum/orderable_item/bitrunning_tech/ability_tier1
|
|
cost_per_order = 1000
|
|
item_path = /obj/item/bitrunning_disk/ability/tier1
|
|
desc = "This disk contains a program that lets you cast Summon Cheese or Lesser Heal."
|
|
|
|
/datum/orderable_item/bitrunning_tech/ability_tier2
|
|
cost_per_order = 1800
|
|
item_path = /obj/item/bitrunning_disk/ability/tier2
|
|
desc = "This disk contains a program that lets you cast Fireball, Lightning Bolt, or Forcewall."
|
|
|
|
/datum/orderable_item/bitrunning_tech/ability_tier3
|
|
cost_per_order = 3200
|
|
item_path = /obj/item/bitrunning_disk/ability/tier3
|
|
desc = "This disk contains a program that lets you shapeshift into a lesser ashdrake, or a polar bear."
|
|
|
|
/datum/orderable_item/bitrunning_tech/flip_skillchip
|
|
item_path = /obj/item/skillchip/matrix_flip
|
|
cost_per_order = 2000
|
|
|
|
/datum/orderable_item/bitrunning_tech/pka_mod
|
|
item_path = /obj/item/bitrunning_disk/item/pka_mods
|
|
cost_per_order = 750
|
|
desc = "This disk contains a program that lets you equip modkits for the proto-kinetic accelerator. Proto-kinetic accelerator not included."
|
|
|
|
/datum/orderable_item/bitrunning_tech/pka_mod/premium
|
|
item_path = /obj/item/bitrunning_disk/item/pka_mods/premium
|
|
cost_per_order = 1800
|
|
desc = "This disk contains a program that lets you equip stronger modkits for the proto-kinetic accelerator. Proto-kinetic accelerator not included."
|
|
|
|
/datum/orderable_item/bitrunning_tech/pkc_mod
|
|
item_path = /obj/item/bitrunning_disk/item/pkc_mods
|
|
cost_per_order = 750
|
|
desc = "This disk contains a program that lets you equip trophies for the proto-kinetic crusher. Proto-kinetic crusher no included."
|
|
|
|
/datum/orderable_item/bitrunning_tech/pkc_mod/premium
|
|
item_path = /obj/item/bitrunning_disk/item/pkc_mods/premium
|
|
cost_per_order = 1800
|
|
desc = "This disk contains a program that lets you equip stronger trophies for the proto-kinetic crusher. Proto-kinetic crusher not included."
|