diff --git a/code/game/objects/structures/crates_lockers/largecrate_vr.dm b/code/game/objects/structures/crates_lockers/largecrate_vr.dm index 16bf7d33e1f..d6622e25911 100644 --- a/code/game/objects/structures/crates_lockers/largecrate_vr.dm +++ b/code/game/objects/structures/crates_lockers/largecrate_vr.dm @@ -71,7 +71,7 @@ /mob/living/simple_animal/hostile/alien/sentinel, /mob/living/simple_animal/hostile/alien/queen, /mob/living/simple_animal/otie/feral, - /mob/living/simple_animal/otie/redspace, + /mob/living/simple_animal/otie/red, /mob/living/simple_animal/hostile/corrupthound)) return ..() @@ -102,6 +102,11 @@ desc = "VARMAcorp experimental hostile environment adaptive breeding development kit. WARNING, DO NOT RELEASE IN WILD!" starts_with = list(/mob/living/simple_animal/otie/cotie/phoron) +/obj/structure/largecrate/animal/otie/phoron/initialize() + starts_with = list(pick(/mob/living/simple_animal/otie/cotie/phoron;2, + /mob/living/simple_animal/otie/red/friendly;0.5)) + return ..() + /obj/structure/largecrate/animal/otie/attack_hand(mob/living/carbon/human/M as mob)//I just couldn't decide between the icons lmao if(taped == 1) playsound(src, 'sound/items/poster_ripped.ogg', 50, 1) diff --git a/code/modules/mob/living/simple_animal/vore/otie.dm b/code/modules/mob/living/simple_animal/vore/otie.dm index fe5751199e3..5220f861c57 100644 --- a/code/modules/mob/living/simple_animal/vore/otie.dm +++ b/code/modules/mob/living/simple_animal/vore/otie.dm @@ -6,7 +6,7 @@ /mob/living/simple_animal/otie //Spawn this one only if you're looking for a bad time. Not friendly. name = "otie" desc = "The classic bioengineered longdog." - tt_desc = "Canis otis" + tt_desc = "Otus robustus" icon = 'icons/mob/vore64x32.dmi' icon_state = "otie" icon_living = "otie" @@ -64,6 +64,7 @@ /mob/living/simple_animal/otie/feral //gets the pet2tame feature. starts out hostile tho so get gamblin' name = "mutated feral otie" desc = "The classic bioengineered longdog. No pets. Only bite. This one has mutated from too much time out on the surface of Virgo-3B." + tt_desc = "Otus phoronis" icon_state = "siftusian" icon_living = "siftusian" icon_dead = "siftusian-dead" @@ -84,15 +85,16 @@ glowyeyes = TRUE eyetype = "photie" -/mob/living/simple_animal/otie/redspace +/mob/living/simple_animal/otie/red name = "feral red otie" desc = "Seems this ominous looking longdog has been infused with wicked infernal forces." + tt_desc = "Otus infernalis" icon_state = "hotie" icon_living = "hotie" icon_dead = "hotie-dead" icon_rest = "hotie_rest" - faction = "virgo3b" - tame_chance = 5 // Only a 1 in 20 chance of success. It's feral. What do you expect? + faction = "cult" + tame_chance = 20 melee_damage_lower = 10 melee_damage_upper = 25 // Lazy way of making sure this otie survives outside. @@ -107,9 +109,9 @@ glowyeyes = TRUE eyetype = "hotie" -/mob/living/simple_animal/otie/redspace/friendly //gets the pet2tame feature and doesn't kill you right away +/mob/living/simple_animal/otie/red/friendly //gets the pet2tame feature and doesn't kill you right away name = "red otie" - desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. This one might even tolerate you!" + desc = "Seems this ominous looking longdog has been infused with wicked infernal forces. This one seems rather peaceful though." faction = "neutral" tamed = 1 @@ -131,6 +133,7 @@ /mob/living/simple_animal/otie/cotie/phoron //friendly phoron pup with collar name = "mutated otie" desc = "Looks like someone did manage to domesticate one of those wild phoron mutants. What a badass." + tt_desc = "Otus phoronis" icon_state = "pcotie" icon_living = "pcotie" icon_rest = "pcotie_rest" @@ -168,6 +171,7 @@ /mob/living/simple_animal/otie/security/phoron name = "mutated guard otie" desc = "An extra rare phoron resistant version of the VARMAcorp trained snowflake guard dogs." + tt_desc = "Otus phoronis" icon_state = "sifguard" icon_living = "sifguard" icon_rest = "sifguard_rest" diff --git a/icons/mob/vore64x32.dmi b/icons/mob/vore64x32.dmi index ec67da4f576..c0e8c8c5f8f 100644 Binary files a/icons/mob/vore64x32.dmi and b/icons/mob/vore64x32.dmi differ