mirror of
https://github.com/Bubberstation/Bubberstation.git
synced 2026-01-21 06:25:59 +00:00
* Skillchips are now copied to bitrunning avatars, plus a new chip to dodge bullets while flipping. * Update code/_globalvars/traits/_traits.dm --------- Co-authored-by: Ghom <42542238+Ghommie@users.noreply.github.com> Co-authored-by: Pinta <68373373+softcerv@users.noreply.github.com>
37 lines
1.6 KiB
Plaintext
37 lines
1.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
|