diff --git a/code/game/mecha/working/ripley.dm b/code/game/mecha/working/ripley.dm index 2ad11bb021..45dc22b7aa 100644 --- a/code/game/mecha/working/ripley.dm +++ b/code/game/mecha/working/ripley.dm @@ -110,4 +110,14 @@ return +/obj/mecha/working/ripley/attackby(obj/item/weapon/W as obj, mob/user as mob) + if(istype(W, /obj/item/weapon/fluff/sven_fjeltson_1)) + src.icon_state = "earth" + src.initial_icon = "earth" + src.name = "APLU \"Strike the Earth!\"" + src.desc = "Looks like an over worked, under maintained Ripley with some horrific damage." + user << "You pick up your old \"Strike the Earth!\" APLU." + user.drop_item() + del(W) + return diff --git a/code/modules/customitems/item_defines.dm b/code/modules/customitems/item_defines.dm index c6d7f04197..b55ca32823 100644 --- a/code/modules/customitems/item_defines.dm +++ b/code/modules/customitems/item_defines.dm @@ -360,6 +360,14 @@ hi icon = 'custom_items.dmi' icon_state = "royce_kit" +////// Ripley customisation kit - Sven Fjeltson - Mordeth221 + +/obj/item/weapon/fluff/sven_fjeltson_1 + name = "Mercenary APLU kit" + desc = "A kit containing all the needed tools and parts to turn an APLU Ripley into an old Mercenaries APLU." + icon = 'custom_items.dmi' + icon_state = "sven_kit" + ////////////////////////////////// //////////// Clothing //////////// ////////////////////////////////// diff --git a/config/custom_items.txt b/config/custom_items.txt index bc00b5c923..9604d19db1 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -74,4 +74,5 @@ vinceluk: Ashley Rifler: /obj/item/clothing/gloves/fluff/ashley_rifler_1 vinceluk: Seth Sealis: /obj/item/clothing/suit/det_suit/fluff/graycoat whitellama: Ethan Way: /obj/item/fluff/ethan_way_1 whitewolf41: Jeremy Wolf: /obj/item/clothing/under/rank/security/fluff/jeremy_wolf_1 -zuhayr: Jane Doe: /obj/item/clothing/under/fluff/jane_sidsuit \ No newline at end of file +zuhayr: Jane Doe: /obj/item/clothing/under/fluff/jane_sidsuit +mordeth221: Sven Fjeltson: /obj/item/weapon/fluff/sven_fjeltson_1 \ No newline at end of file diff --git a/icons/mecha/mecha.dmi b/icons/mecha/mecha.dmi index a9d6a2656f..57ef083f54 100644 Binary files a/icons/mecha/mecha.dmi and b/icons/mecha/mecha.dmi differ diff --git a/icons/obj/custom_items.dmi b/icons/obj/custom_items.dmi index 5c6fdce42d..db4153573e 100644 Binary files a/icons/obj/custom_items.dmi and b/icons/obj/custom_items.dmi differ