[MIRROR] Makes material costs use sheets amount define (#12887)

Co-authored-by: Guti <32563288+TheCaramelion@users.noreply.github.com>
Co-authored-by: Cameron Lennox <killer65311@gmail.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2026-07-09 19:17:37 -04:00
committed by GitHub
co-authored by Guti Cameron Lennox
parent 16fda18c8c
commit 435bb3079d
167 changed files with 1637 additions and 1634 deletions
@@ -30,4 +30,4 @@
desc = "A welder made from brass fittings."
icon_state = "brasswelder"
max_fuel = 20
matter = list(MAT_STEEL = 70, MAT_GLASS = 60)
matter = list(MAT_STEEL = MATERIAL_COST(0.035), MAT_GLASS = MATERIAL_COST(0.03))
@@ -12,7 +12,7 @@
pry = 1
item_state = "crowbar"
w_class = ITEMSIZE_SMALL
matter = list(MAT_STEEL = 50)
matter = list(MAT_STEEL = MATERIAL_COST(0.025))
attack_verb = list("attacked", "bashed", "battered", "bludgeoned", "whacked")
usesound = 'sound/items/crowbar.ogg'
drop_sound = 'sound/items/drop/crowbar.ogg'
@@ -84,7 +84,7 @@
throwforce = 5
pry = 1
w_class = ITEMSIZE_SMALL
matter = list(MAT_STEEL = 30)
matter = list(MAT_STEEL = MATERIAL_COST(0.015))
attack_verb = list("whapped", "smacked", "swatted", "thwacked", "hit")
usesound = 'sound/items/crowbar.ogg'
toolspeed = 1
@@ -19,7 +19,7 @@
usesound = 'sound/items/screwdriver.ogg'
drop_sound = 'sound/items/drop/screwdriver.ogg'
pickup_sound = 'sound/items/pickup/screwdriver.ogg'
matter = list(MAT_STEEL = 75)
matter = list(MAT_STEEL = MATERIAL_COST(0.0375))
attack_verb = list("stabbed")
sharp = TRUE
toolspeed = 1
@@ -42,7 +42,7 @@
icon = 'icons/obj/tools.dmi'
icon_state = "jaws_pry"
item_state = "jawsoflife"
matter = list(MAT_METAL=150, MAT_SILVER=50)
matter = list(MAT_METAL=150, MAT_SILVER = MATERIAL_COST(0.025))
usesound = 'sound/items/jaws_pry.ogg'
force = 15
toolspeed = 0.25
@@ -78,7 +78,7 @@
icon = 'icons/obj/tools.dmi'
icon_state = "drill_bolt"
item_state = "drill"
matter = list(MAT_STEEL = 150, MAT_SILVER = 50)
matter = list(MAT_STEEL = MATERIAL_COST(0.075), MAT_SILVER = MATERIAL_COST(0.025))
hitsound = 'sound/items/drill_hit.ogg'
usesound = 'sound/items/drill_use.ogg'
force = 8
@@ -17,7 +17,7 @@
w_class = ITEMSIZE_SMALL
//Cost to make in the autolathe
matter = list(MAT_STEEL = 70, MAT_GLASS = 30)
matter = list(MAT_STEEL = MATERIAL_COST(0.035), MAT_GLASS = MATERIAL_COST(0.015))
//R&D tech level
@@ -363,7 +363,7 @@
desc = "A slightly larger welder with a larger tank."
icon_state = "indwelder"
max_fuel = 40
matter = list(MAT_STEEL = 70, MAT_GLASS = 60)
matter = list(MAT_STEEL = MATERIAL_COST(0.035), MAT_GLASS = MATERIAL_COST(0.03))
/obj/item/weldingtool/hugetank
name = "upgraded welding tool"
@@ -371,7 +371,7 @@
icon_state = "upindwelder"
max_fuel = 80
w_class = ITEMSIZE_NORMAL
matter = list(MAT_STEEL = 70, MAT_GLASS = 120)
matter = list(MAT_STEEL = MATERIAL_COST(0.035), MAT_GLASS = MATERIAL_COST(0.06))
/obj/item/weldingtool/mini
name = "emergency welding tool"
@@ -379,7 +379,7 @@
icon_state = "miniwelder"
max_fuel = 10
w_class = ITEMSIZE_SMALL
matter = list(MAT_METAL = 30, MAT_GLASS = 10)
matter = list(MAT_METAL = 30, MAT_GLASS = MATERIAL_COST(0.005))
change_icons = 0
toolspeed = 2
eye_safety_modifier = 1 // Safer on eyes.
@@ -434,7 +434,7 @@
icon_state = "exwelder"
max_fuel = 40
w_class = ITEMSIZE_NORMAL
matter = list(MAT_STEEL = 70, MAT_GLASS = 120)
matter = list(MAT_STEEL = MATERIAL_COST(0.035), MAT_GLASS = MATERIAL_COST(0.06))
toolspeed = 0.5
change_icons = 0
flame_intensity = 3
@@ -15,7 +15,7 @@
throw_speed = 2
throw_range = 9
w_class = ITEMSIZE_SMALL
matter = list(MAT_STEEL = 80)
matter = list(MAT_STEEL = MATERIAL_COST(0.04))
attack_verb = list("pinched", "nipped")
hitsound = 'sound/items/wirecutter.ogg'
usesound = 'sound/items/wirecutter.ogg'
@@ -10,7 +10,7 @@
force = 6
throwforce = 7
w_class = ITEMSIZE_SMALL
matter = list(MAT_STEEL = 150)
matter = list(MAT_STEEL = MATERIAL_COST(0.075))
attack_verb = list("bashed", "battered", "bludgeoned", "whacked")
usesound = 'sound/items/ratchet.ogg'
toolspeed = 1