Resolves compile errors with the exception of map errors.

This commit is contained in:
Cameron653
2019-01-12 21:09:29 -05:00
parent fb6f5e33ca
commit 9dd973221d
140 changed files with 1223 additions and 1211 deletions
+16 -16
View File
@@ -1,4 +1,4 @@
/obj/structure/mob_spawner
/obj/structure/mob_spawner //VORESTATION AI TEMPORARY REMOVAL
name = "mob spawner"
desc = "This shouldn't be seen, yell at a dev."
icon = 'icons/effects/effects.dmi'
@@ -9,8 +9,8 @@
var/spawn_delay = 10 MINUTES
var/list/spawn_types = list(
/mob/living/simple_animal/corgi = 100,
/mob/living/simple_animal/cat = 25
/*/mob/living/simple_mob/corgi = 100,
/mob/living/simple_mob/cat = 25*/ //VORESTATION AI TEMPORARY REMOVAL
)
var/total_spawns = -1 //Total mob spawns, over all time, -1 for no limit
@@ -129,15 +129,15 @@ It also makes it so a ghost wont know where all the goodies/mobs are.
//////////////
// Spawners //
/////////////
/* //VORESTATION AI TEMPORARY REMOVAL
/obj/structure/mob_spawner/scanner/corgi
name = "Corgi Lazy Spawner"
desc = "This is a proof of concept, not sure why you would use this one"
spawn_delay = 3 MINUTES
mob_faction = "Corgi"
spawn_types = list(
/mob/living/simple_animal/corgi = 75,
/mob/living/simple_animal/corgi/puppy = 50
/mob/living/simple_mob/corgi = 75,
/mob/living/simple_mob/corgi/puppy = 50
)
simultaneous_spawns = 5
@@ -157,10 +157,10 @@ It also makes it so a ghost wont know where all the goodies/mobs are.
anchored = 1
invisibility = 101
spawn_types = list(
/mob/living/simple_animal/retaliate/gaslamp = 20,
/mob/living/simple_animal/otie/feral = 10,
/mob/living/simple_animal/hostile/dino/virgo3b = 5,
/mob/living/simple_animal/hostile/dragon/virgo3b = 1
/mob/living/simple_mob/retaliate/gaslamp = 20,
/mob/living/simple_mob/otie/feral = 10,
/mob/living/simple_mob/hostile/dino/virgo3b = 5,
/mob/living/simple_mob/hostile/dragon/virgo3b = 1
)
/obj/structure/mob_spawner/scanner/xenos
@@ -176,10 +176,10 @@ It also makes it so a ghost wont know where all the goodies/mobs are.
icon = 'icons/mob/actions.dmi'
icon_state = "alien_egg"
spawn_types = list(
/mob/living/simple_animal/hostile/alien/drone = 20,
/mob/living/simple_animal/hostile/alien = 10,
/mob/living/simple_animal/hostile/alien/sentinel = 5,
/mob/living/simple_animal/hostile/alien/queen = 1
/mob/living/simple_mob/hostile/alien/drone = 20,
/mob/living/simple_mob/hostile/alien = 10,
/mob/living/simple_mob/hostile/alien/sentinel = 5,
/mob/living/simple_mob/hostile/alien/queen = 1
)
/obj/structure/mob_spawner/scanner/xenos/royal
@@ -195,5 +195,5 @@ It also makes it so a ghost wont know where all the goodies/mobs are.
icon = 'icons/mob/actions.dmi'
icon_state = "alien_egg"
spawn_types = list(
/mob/living/simple_animal/hostile/alien/queen = 5,
)
/mob/living/simple_mob/hostile/alien/queen = 5,
)*/