Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Обновление тандера #611

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 31 additions & 1 deletion code/datums/uplinks_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -983,4 +983,34 @@ var/global/list/thunderfield_items = list()
/datum/thunderfield_item/bhelmet
name = "Bulletproof helmet"
item = /obj/item/clothing/head/helmet/bulletproof
cost = 6
cost = 6

/datum/thunderfield_item/unrechlaser
name = "Unrechargable Laser"
item = /obj/item/weapon/gun/energy/laser
cost = 6

/datum/thunderfield_item/rechlaser
name = "Rechargable Laser"
item = /obj/item/weapon/gun/energy/laser/selfcharging/captain
cost = 12

/datum/thunderfield_item/ablarmor
name = "Ablative armor"
item = /obj/item/clothing/suit/armor/laserproof
cost = 8

/datum/thunderfield_item/ablhelmet
name = "Ablative helmet"
item = /obj/item/clothing/head/helmet/laserproof
cost = 6

/datum/thunderfield_item/esword
name = "Energy sword"
item = /obj/item/weapon/melee/energy/sword
cost = 7

/datum/thunderfield_item/eaxe
name = "Energy axe"
item = /obj/item/weapon/melee/energy/axe
cost = 10
Loading