diff --git a/code/game/machinery/bots/medbot.dm b/code/game/machinery/bots/medbot.dm index a11424fd7cd..1f76ba2a144 100644 --- a/code/game/machinery/bots/medbot.dm +++ b/code/game/machinery/bots/medbot.dm @@ -559,7 +559,12 @@ A.skin = "tox" else if(istype(src,/obj/item/weapon/storage/firstaid/o2)) A.skin = "o2" - + else if(istype(src,/obj/item/weapon/storage/firstaid/brute)) + A.skin = "brute" + else if(istype(src,/obj/item/weapon/storage/firstaid/adv)) + A.skin = "adv" + else if(istype(src,/obj/item/weapon/storage/firstaid/aquatic_kit)) + A.skin = "fish" qdel(S) user.put_in_hands(A) user << "You add the robot arm to the first aid kit." diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 49dd158adf3..01443ade04e 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -1260,12 +1260,12 @@ product_ads = "House-training costs extra!;Now with 1000% more cat hair!;Allergies are a sign of weakness!;Dogs are man's best friend. Remember that Vulpkanin!; Heat lamps for Unathi!; Vox-y want a cracker?" vend_delay = 15 icon_state = "crittercare" - products = list(/obj/item/clothing/accessory/petcollar = 5, /obj/item/weapon/storage/aquatic_kit/full =5, /obj/item/fish_eggs/goldfish = 5, + products = list(/obj/item/clothing/accessory/petcollar = 5, /obj/item/weapon/storage/firstaid/aquatic_kit/full =5, /obj/item/fish_eggs/goldfish = 5, /obj/item/fish_eggs/clownfish = 5, /obj/item/fish_eggs/shark = 5, /obj/item/fish_eggs/feederfish = 10, /obj/item/fish_eggs/salmon = 5, /obj/item/fish_eggs/catfish = 5, /obj/item/fish_eggs/glofish = 5, /obj/item/fish_eggs/electric_eel = 5, /obj/item/fish_eggs/shrimp = 10, /obj/item/toy/pet_rock = 5, ) - prices = list(/obj/item/clothing/accessory/petcollar = 50, /obj/item/weapon/storage/aquatic_kit/full = 60, /obj/item/fish_eggs/goldfish = 10, + prices = list(/obj/item/clothing/accessory/petcollar = 50, /obj/item/weapon/storage/firstaid/aquatic_kit/full = 60, /obj/item/fish_eggs/goldfish = 10, /obj/item/fish_eggs/clownfish = 10, /obj/item/fish_eggs/shark = 10, /obj/item/fish_eggs/feederfish = 5, /obj/item/fish_eggs/salmon = 10, /obj/item/fish_eggs/catfish = 10, /obj/item/fish_eggs/glofish = 10, /obj/item/fish_eggs/electric_eel = 10, /obj/item/fish_eggs/shrimp = 5, /obj/item/toy/pet_rock = 100, diff --git a/code/game/objects/items/weapons/storage/fancy.dm b/code/game/objects/items/weapons/storage/fancy.dm index f6690ac0a1d..71f7d2559a5 100644 --- a/code/game/objects/items/weapons/storage/fancy.dm +++ b/code/game/objects/items/weapons/storage/fancy.dm @@ -344,17 +344,17 @@ ///Aquatic Starter Kit -/obj/item/weapon/storage/aquatic_kit +/obj/item/weapon/storage/firstaid/aquatic_kit name = "aquatic starter kit" desc = "It's a starter kit box for an acquarium." icon_state = "AquaticKit" throw_speed = 2 throw_range = 8 -/obj/item/weapon/storage/aquatic_kit/full +/obj/item/weapon/storage/firstaid/aquatic_kit/full desc = "It's a starter kit for an acquarium; includes 1 tank brush, 1 egg scoop, 1 fish net, and 1 container of fish food." -/obj/item/weapon/storage/aquatic_kit/full/New() +/obj/item/weapon/storage/firstaid/aquatic_kit/full/New() ..() new /obj/item/weapon/egg_scoop(src) new /obj/item/weapon/fish_net(src) diff --git a/icons/obj/aibots.dmi b/icons/obj/aibots.dmi index 1a0d4960abe..b6e60dab2dc 100644 Binary files a/icons/obj/aibots.dmi and b/icons/obj/aibots.dmi differ