Skip to content

Commit

Permalink
Rolling Back Amber spawning
Browse files Browse the repository at this point in the history
  • Loading branch information
EnderMage99 committed Jan 10, 2025
1 parent 3af411c commit 2046278
Showing 1 changed file with 2 additions and 26 deletions.
28 changes: 2 additions & 26 deletions ModularTegustation/tegu_items/associations/cityspawners.dm
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,6 @@ GLOBAL_VAR_INIT(city_east_enemies, FALSE)
"gcorp",
"sweeper",
"bots",
"worms",
)

/obj/effect/landmark/backstreetspawn/Initialize()
Expand All @@ -100,15 +99,10 @@ GLOBAL_VAR_INIT(city_east_enemies, FALSE)
spawning = /mob/living/simple_animal/hostile/ordeal/green_bot
if(prob(30))
spawning = /mob/living/simple_animal/hostile/ordeal/green_bot_big
new spawning(get_turf(src))


if("worms")
spawning = /mob/living/simple_animal/hostile/ordeal/amber_bug
if(prob(30))
spawning = /mob/living/simple_animal/hostile/ordeal/amber_dusk

new spawning(get_turf(src))
if (GLOB.city_center_enemies == "worms")
new /mob/living/simple_animal/hostile/ordeal/amber_bug (get_turf(src))

/obj/effect/landmark/backstreetspawnwest
name = "cityspawn landmark"
Expand All @@ -117,7 +111,6 @@ GLOBAL_VAR_INIT(city_east_enemies, FALSE)
"gcorp",
"sweeper",
"bots",
"worms",
)

/obj/effect/landmark/backstreetspawnwest/Initialize()
Expand All @@ -141,15 +134,7 @@ GLOBAL_VAR_INIT(city_east_enemies, FALSE)
spawning = /mob/living/simple_animal/hostile/ordeal/green_bot
if(prob(30))
spawning = /mob/living/simple_animal/hostile/ordeal/green_bot_big

if("worms")
spawning = /mob/living/simple_animal/hostile/ordeal/amber_bug
if(prob(30))
spawning = /mob/living/simple_animal/hostile/ordeal/amber_dusk

new spawning(get_turf(src))
if (GLOB.city_west_enemies == "worms")
new /mob/living/simple_animal/hostile/ordeal/amber_bug (get_turf(src))


/obj/effect/landmark/backstreetspawneast
Expand All @@ -159,7 +144,6 @@ GLOBAL_VAR_INIT(city_east_enemies, FALSE)
"gcorp",
"sweeper",
"bots",
"worms",
)

/obj/effect/landmark/backstreetspawneast/Initialize()
Expand All @@ -182,12 +166,4 @@ GLOBAL_VAR_INIT(city_east_enemies, FALSE)
spawning = /mob/living/simple_animal/hostile/ordeal/green_bot
if(prob(30))
spawning = /mob/living/simple_animal/hostile/ordeal/green_bot_big

if("worms")
spawning = /mob/living/simple_animal/hostile/ordeal/amber_bug
if(prob(30))
spawning = /mob/living/simple_animal/hostile/ordeal/amber_dusk

new spawning(get_turf(src))
if (GLOB.city_east_enemies == "worms")
new /mob/living/simple_animal/hostile/ordeal/amber_bug (get_turf(src))

0 comments on commit 2046278

Please sign in to comment.