diff --git a/mods/_fd/fd_assets/customs/kanaris/item.dm b/mods/_fd/fd_assets/customs/kanaris/item.dm index 211e4071773c5..393bd5ce47636 100644 --- a/mods/_fd/fd_assets/customs/kanaris/item.dm +++ b/mods/_fd/fd_assets/customs/kanaris/item.dm @@ -2,7 +2,7 @@ /obj/item/clothing/accessory/cloakspace/willheim name = "cloak" - desc = "." + desc = "Durable cloak from SpaceFashion. Resistant to environmental hazards and physical impact. Pleasant to the touch." icon = 'mods/_fd/fd_assets/customs/kanaris/willheim.dmi' icon_state = "kanarys_cloak" @@ -56,9 +56,9 @@ slot_r_hand_str = "syndicate-black-green" ) equip_delay = 4 SECONDS - flags_inv = HIDEGLOVES | HIDESHOES | HIDEJUMPSUIT | HIDETAIL | CLOTHING_BULKY + flags_inv = HIDESHOES | HIDETAIL | CLOTHING_BULKY | HIDEJUMPSUIT // slowdown = 1 - + valid_accessory_slots = list(ACCESSORY_SLOT_INSIGNIA) body_parts_covered = ARMS | FULL_TORSO | FULL_LEGS cold_protection = ARMS | FULL_TORSO | FULL_LEGS heat_protection = ARMS | FULL_TORSO | FULL_LEGS @@ -69,3 +69,15 @@ energy = ARMOR_ENERGY_MINOR, bomb = ARMOR_BOMB_MINOR ) + +/obj/item/storage/box/willheim + name = "box" + desc = "It's just an ordinary box." + +/obj/item/storage/box/willheim/New() + ..() + new /obj/item/clothing/suit/armor/willheim(src) + new /obj/item/clothing/head/helmet/willheim(src) + new /obj/item/gun/energy/laser/lasgun/kanarys(src) + new /obj/item/cell/guncell/lasgun(src) + new /obj/item/cell/guncell/lasgun(src) diff --git a/mods/_fd/fd_assets/customs/kanaris/weapon.dm b/mods/_fd/fd_assets/customs/kanaris/weapon.dm index 4756c4d8e3643..75a374b5d43cd 100644 --- a/mods/_fd/fd_assets/customs/kanaris/weapon.dm +++ b/mods/_fd/fd_assets/customs/kanaris/weapon.dm @@ -1,7 +1,7 @@ /obj/item/gun/energy/laser/lasgun/kanarys - name = "Lasgun" - desc = "Lasgun series D-99 designed specifically for the Fleet. Known for its devastating power, almost unique for lasers." + name = "SLR-98" + desc = "The SLR-98 (Sniper Laser Rifle) is an old, somewhat outdated, laser rifle that is heavily used by pirates and bounty hunters on Kabul. It has a shabby appearance, as well as desert camouflage, which is perfect for working on a desolate and godforsaken planet in the Pirx system. s." icon = 'mods/_fd/fd_assets/customs/kanaris/willheim.dmi' icon_state = "energy-rifle-s" item_state = "rifle-scope" @@ -28,3 +28,6 @@ list(mode_name = "semiauto", burst=1, fire_delay=2, move_delay=2, accuracy=0, charge_cost=200, projectile_type = /obj/item/projectile/lasbolt), list(mode_name = "overcharge", burst=1, fire_delay=4, move_delay=6, accuracy=0, charge_cost=800, projectile_type = /obj/item/projectile/lasbolt/overcharge) ) + +/obj/item/gun/energy/laser/lasgun/kanarys/on_update_icon() + ..() diff --git a/mods/_fd/fd_assets/customs/kanaris/willheim.dmi b/mods/_fd/fd_assets/customs/kanaris/willheim.dmi index a8620d5a364a9..cab1000cbabd5 100644 Binary files a/mods/_fd/fd_assets/customs/kanaris/willheim.dmi and b/mods/_fd/fd_assets/customs/kanaris/willheim.dmi differ