Skip to content

Commit

Permalink
Merge pull request #4711 from MistakeNot4892/rework/mining_icons
Browse files Browse the repository at this point in the history
Breaking up mining.dmi.
  • Loading branch information
out-of-phaze authored Jan 14, 2025
2 parents dd67528 + f58faeb commit 3110671
Show file tree
Hide file tree
Showing 11 changed files with 12 additions and 12 deletions.
8 changes: 4 additions & 4 deletions code/game/objects/items/weapons/storage/specialized.dm
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
/obj/item/ore
name = "mining satchel"
desc = "This sturdy bag can be used to store and transport ores."
icon = 'icons/obj/mining.dmi'
icon_state = "satchel"
icon = 'icons/obj/items/mining_satchel.dmi'
icon_state = ICON_STATE_WORLD
slot_flags = SLOT_LOWER_BODY
w_class = ITEM_SIZE_LARGE
storage = /datum/storage/ore
Expand Down Expand Up @@ -57,8 +57,8 @@

/obj/item/sheetsnatcher
name = "sheet snatcher"
icon = 'icons/obj/mining.dmi'
icon_state = "sheetsnatcher"
icon = 'icons/obj/items/sheet_snatcher.dmi'
icon_state = ICON_STATE_WORLD
desc = "A patented storage system designed for any kind of mineral sheet."
material = /decl/material/solid/organic/plastic
storage = /datum/storage/sheets
Expand Down
4 changes: 2 additions & 2 deletions code/modules/mining/ore_box.dm
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
/obj/structure/ore_box
name = "ore box"
desc = "A heavy box used for storing ore."
icon = 'icons/obj/mining.dmi'
icon_state = "orebox0"
icon = 'icons/obj/structures/ore_box.dmi'
icon_state = ICON_STATE_WORLD
density = TRUE
material = /decl/material/solid/organic/wood/oak
atom_flags = ATOM_FLAG_CLIMBABLE
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/obj/machinery/giga_drill
name = "alien drill"
desc = "A giant, alien drill mounted on long treads."
icon = 'icons/obj/mining.dmi'
icon = 'icons/obj/machines/gigadrill.dmi'
icon_state = "gigadrill"
var/active = 0
var/drill_time = 10
Expand Down
6 changes: 3 additions & 3 deletions code/modules/xenoarcheaology/boulder.dm
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/obj/structure/boulder
name = "boulder"
desc = "A large boulder, somewhat bigger than a small boulder."
icon = 'icons/obj/mining.dmi'
icon_state = "boulder1"
icon = 'icons/obj/structures/boulder.dmi'
icon_state = ICON_STATE_WORLD
density = TRUE
opacity = TRUE
anchored = TRUE
Expand Down Expand Up @@ -30,7 +30,7 @@

/obj/structure/boulder/Initialize(var/ml, var/_mat, var/coloration)
. = ..()
icon_state = "boulder[rand(1,6)]"
icon_state = "[initial(icon_state)][rand(1,6)]"
if(coloration)
color = coloration
excavation_level = rand(5, 50)
Expand Down
4 changes: 2 additions & 2 deletions code/modules/xenoarcheaology/tools/tools.dm
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
/obj/item/bag/fossils
name = "fossil satchel"
desc = "Transports delicate fossils in suspension so they don't break during transit."
icon = 'icons/obj/mining.dmi'
icon_state = "satchel"
icon = 'icons/obj/items/mining_satchel.dmi'
icon_state = ICON_STATE_WORLD
slot_flags = SLOT_LOWER_BODY | SLOT_POCKET
w_class = ITEM_SIZE_NORMAL
storage = /datum/storage/bag/fossils
Expand Down
Binary file added icons/obj/items/mining_satchel.dmi
Binary file not shown.
Binary file added icons/obj/items/sheet_snatcher.dmi
Binary file not shown.
Binary file added icons/obj/machines/gigadrill.dmi
Binary file not shown.
Binary file removed icons/obj/mining.dmi
Binary file not shown.
Binary file added icons/obj/structures/boulder.dmi
Binary file not shown.
Binary file added icons/obj/structures/ore_box.dmi
Binary file not shown.

0 comments on commit 3110671

Please sign in to comment.