diff --git a/code/game/gamemodes/cult/runes.dm b/code/game/gamemodes/cult/runes.dm index a0b8c84a20..0e3a1f7529 100644 --- a/code/game/gamemodes/cult/runes.dm +++ b/code/game/gamemodes/cult/runes.dm @@ -131,7 +131,7 @@ var/list/sacrificed = list() M.say("Tok-lyr rqa'nap g[pick("'","`")]lt-ulotf!") cultist_count += 1 if(cultist_count >= 9) - new /obj/machinery/singularity/narsie(src.loc) + new /obj/machinery/singularity/narsie/large(src.loc) if(ticker.mode.name == "cult") ticker.mode:eldergod = 0 return diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index edc7516f86..2b9e4e2bc8 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -465,6 +465,17 @@ var/global/list/uneatable = list( grav_pull = 10 //How many tiles out do we pull? consume_range = 3 //How many tiles out do we eat +/obj/machinery/singularity/narsie/large + name = "Nar-Sie" + icon = 'icons/obj/narsie.dmi' + // Pixel stuff centers Narsie. + pixel_x = -236 + pixel_y = -256 + current_size = 12 + move_self = 1 //Do we move on our own? + grav_pull = 13 //How many tiles out do we pull? + consume_range = 12 //How many tiles out do we eat + /obj/machinery/singularity/narsie/process() eat() if(!target || prob(5)) diff --git a/html/changelog.html b/html/changelog.html index cb6cee7edf..4a23acc805 100644 --- a/html/changelog.html +++ b/html/changelog.html @@ -56,6 +56,7 @@ should be listed in the changelog upon commit tho. Thanks. -->
  • Welding goggles have been added. They are like welding helmets but they are for the glasses equipment slot. Science and the assembly line are given a pair.
  • Thanks to WJohnston for the welding goggle icons.
  • Small change to the Assembly Line. Instead of six normal flashes, the Assembly Line will instead have two normal flashes and eight synthetic flashes. Synthetic flashes only work once but are designed to be used in construction of Cyborgs.
  • +
  • Nar-Sie put on a few pounds. Thanks HornyGranny.
  • diff --git a/icons/obj/narsie.dmi b/icons/obj/narsie.dmi new file mode 100644 index 0000000000..940b094176 Binary files /dev/null and b/icons/obj/narsie.dmi differ