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

Добавлены эксперементальные лопаты #13597

Open
wants to merge 15 commits into
base: master
Choose a base branch
from
13 changes: 13 additions & 0 deletions code/modules/mining/mine_items.dm
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,19 @@ var/global/mining_shuttle_location = 0 // 0 = station 13, 1 = mining station
QUALITY_PRYING = 0.75
)

/obj/item/weapon/shovel/experimental
name = "experimental shovel"
desc = "It's a damn cool shovel."
icon_state = "expshovel"
item_state = "expshovel"
item_state_world = "expshovel_world"
force = 10.0
toolspeed = 0.1
origin_tech = "materials=2;engineering=3"
qualities = list(
QUALITY_PRYING = 0.5
)
Riverz1 marked this conversation as resolved.
Show resolved Hide resolved

/obj/item/weapon/shovel/spade
name = "spade"
desc = "A small tool for digging and moving dirt."
Expand Down
9 changes: 9 additions & 0 deletions code/modules/research/designs.dm
Original file line number Diff line number Diff line change
Expand Up @@ -1542,6 +1542,15 @@ other types of metals and chemistry for reagents).
build_path = /obj/item/weapon/circuitboard/miningdrill
category = list("Machine")

/datum/design/expshovel
name = "Experimental shovel"
desc = "This is an experimental shovel that digs damn fast!"
id = "expshovel"
build_type = PROTOLATHE
materials = list(MAT_METAL = 2500, MAT_GLASS = 200)
build_path = /obj/item/weapon/shovel/experimental
category = list("Equipment")

/datum/design/mining_drill_brace
name = "Machine Design (Mining Drill Brace)"
desc = "Brace for mining drill."
Expand Down
2 changes: 1 addition & 1 deletion code/modules/research/research.dm
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ The tech datums are the actual "tech trees" that you improve through researching
required_tech_levels = list()
cost = 500

unlocks_designs = list("ordercomp", "supplycomp", "advmop", "holosign", "spraycan", "space_suit", "space_suit_helmet", "glowsticks_adv", "stimpack")
unlocks_designs = list("ordercomp", "supplycomp", "advmop", "holosign", "spraycan", "space_suit", "space_suit_helmet", "glowsticks_adv", "stimpack", "expshovel")

/datum/technology/basic_mining
name = "Basic Mining"
Expand Down
Binary file modified icons/mob/inhands/items_lefthand.dmi
Binary file not shown.
Binary file modified icons/mob/inhands/items_righthand.dmi
Binary file not shown.
Binary file modified icons/obj/tools.dmi
Binary file not shown.
Loading