mirror of
https://github.com/VOREStation/VOREStation.git
synced 2026-08-28 14:37:27 +01:00
Merge pull request #4790 from Sebbe9123/upstream-merge-5735
More AI fixes, fixes crates, spawners, adds ION spiders and MORE.
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
// Slightly placeholder, mostly to replace ion hivebots on V4
|
||||
/mob/living/simple_mob/animal/giant_spider/ion
|
||||
desc = "Furry and green, it makes you shudder to look at it. This one has brilliant green eyes and a hint of static discharge."
|
||||
tt_desc = "X Brachypelma phorus ionus"
|
||||
icon_state = "webslinger"
|
||||
icon_living = "webslinger"
|
||||
icon_dead = "webslinger_dead"
|
||||
|
||||
maxHealth = 90
|
||||
health = 90
|
||||
|
||||
base_attack_cooldown = 10
|
||||
projectilesound = 'sound/weapons/taser2.ogg'
|
||||
projectiletype = /obj/item/projectile/ion/small
|
||||
|
||||
melee_damage_lower = 8
|
||||
melee_damage_upper = 15
|
||||
|
||||
poison_chance = 15
|
||||
poison_per_bite = 2
|
||||
poison_type = "psilocybin"
|
||||
|
||||
ai_holder_type = /datum/ai_holder/simple_mob/ranged/electric_spider
|
||||
@@ -113,7 +113,7 @@
|
||||
New()
|
||||
..()
|
||||
spot_add(2,2,/obj/random/cargopod) //EXTRA loot!
|
||||
//spot_add(2,2,/mob/living/simple_mob/hostile/alien) //GRRR //VORESTATION AI TEMPORARY REMOVAL
|
||||
spot_add(2,2,/mob/living/simple_mob/animal/space/alien) //GRRR
|
||||
|
||||
//Longer cargo container for higher difficulties
|
||||
/datum/rogue/asteroid/predef/cargo_large
|
||||
@@ -146,5 +146,5 @@
|
||||
spot_add(3,3,/obj/random/cargopod) //Mid loot
|
||||
spot_add(4,3,/obj/random/cargopod) //Right loot
|
||||
|
||||
//if(prob(30))
|
||||
//spot_add(3,3,/mob/living/simple_mob/hostile/alien) //And maybe a friend. //VORESTATION AI TEMPORARY REMOVAL
|
||||
if(prob(30))
|
||||
spot_add(3,3,/mob/living/simple_mob/animal/space/alien) //And maybe a friend.
|
||||
|
||||
@@ -26,8 +26,8 @@
|
||||
/mob/living/simple_mob/animal/space/alien,
|
||||
/mob/living/simple_mob/animal/space/bear,
|
||||
/mob/living/simple_mob/creature,
|
||||
/mob/living/simple_mob/slime/xenobio)
|
||||
// /mob/living/simple_mob/carp, // Vorestation edit //VORESTATION AI TEMPORARY REMOVAL, REPLACE BACK IN LIST WHEN FIXED
|
||||
/mob/living/simple_mob/slime/xenobio,
|
||||
/mob/living/simple_mob/animal/space/carp)// Vorestation edit
|
||||
else
|
||||
spawn_type = pick(\
|
||||
/mob/living/simple_mob/animal/passive/cat,
|
||||
|
||||
Reference in New Issue
Block a user