From 2111cb97f3da1202bbf8d7ab2eccdfe1f096d182 Mon Sep 17 00:00:00 2001 From: Batrachophreno Date: Fri, 22 May 2026 08:14:08 -0400 Subject: [PATCH] Item Size Adjustments (#22476) Small handful of obj/item size adjustments for common sense, QoL, and standardization. changes: - balance: "Decreases size of Dosimeter from Normal to Small." - balance: "Decreases size of Bomb Defusal Wirecutters and Music Cartridge from Small to Tiny." - balance: "Increases size of Airlock Electronics from Tiny to Small (matches other circuitboards)." --- code/game/machinery/doors/airlock_electronics.dm | 1 - code/game/objects/items/devices/geiger.dm | 1 - code/game/objects/items/tools/tools.dm | 1 + code/modules/clothing/ears/earphones.dm | 2 +- html/changelogs/Bat-ItemSizes.yml | 6 ++++++ 5 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 html/changelogs/Bat-ItemSizes.yml diff --git a/code/game/machinery/doors/airlock_electronics.dm b/code/game/machinery/doors/airlock_electronics.dm index c8ac077e0e7..a9076a40ed6 100644 --- a/code/game/machinery/doors/airlock_electronics.dm +++ b/code/game/machinery/doors/airlock_electronics.dm @@ -2,7 +2,6 @@ name = "airlock electronics" icon = 'icons/obj/module.dmi' icon_state = "door_electronics" - w_class = WEIGHT_CLASS_TINY matter = list(DEFAULT_WALL_MATERIAL = 50, MATERIAL_GLASS = 50) diff --git a/code/game/objects/items/devices/geiger.dm b/code/game/objects/items/devices/geiger.dm index 7f3ef06edb8..dbee043112f 100644 --- a/code/game/objects/items/devices/geiger.dm +++ b/code/game/objects/items/devices/geiger.dm @@ -93,7 +93,6 @@ icon = 'icons/obj/item/scanner.dmi' icon_state = "dosimeter_off" item_state = "dosimeter" - w_class = WEIGHT_CLASS_NORMAL slot_flags = SLOT_WRISTS action_button_name = "Toggle dosimeter counter" matter = list(DEFAULT_WALL_MATERIAL = 100, MATERIAL_GLASS = 50) diff --git a/code/game/objects/items/tools/tools.dm b/code/game/objects/items/tools/tools.dm index 965f1d1d36e..4592d665f45 100644 --- a/code/game/objects/items/tools/tools.dm +++ b/code/game/objects/items/tools/tools.dm @@ -207,6 +207,7 @@ name = "bomb defusal wirecutters" desc = "A tool used to delicately sever the wires used in bomb fuses." icon_state = "mini_wirecutters" + w_class = WEIGHT_CLASS_TINY toolspeed = 0.6 bomb_defusal_chance = 90 // 90% chance, because the thrill of dying must be kept at all times, duh diff --git a/code/modules/clothing/ears/earphones.dm b/code/modules/clothing/ears/earphones.dm index ec47fdc4041..12aae9f3493 100644 --- a/code/modules/clothing/ears/earphones.dm +++ b/code/modules/clothing/ears/earphones.dm @@ -399,7 +399,7 @@ Earphone Variants desc = "A music cartridge." icon = 'icons/obj/item/music_cartridges.dmi' icon_state = "generic" - w_class = WEIGHT_CLASS_SMALL + w_class = WEIGHT_CLASS_TINY var/list/datum/track/tracks /// Whether or not this cartridge can be removed from the datum/jukebox it belongs to. var/hardcoded = FALSE diff --git a/html/changelogs/Bat-ItemSizes.yml b/html/changelogs/Bat-ItemSizes.yml new file mode 100644 index 00000000000..f1397fef1bb --- /dev/null +++ b/html/changelogs/Bat-ItemSizes.yml @@ -0,0 +1,6 @@ +author: Batrachophrenoboocosmomachia +delete-after: True +changes: + - balance: "Decreases size of Dosimeter from Normal to Small." + - balance: "Decreases size of Bomb Defusal Wirecutters and Music Cartridge from Small to Tiny." + - balance: "Increases size of Airlock Electronics from Tiny to Small (matches other circuitboards)."