Mining update (#30)

* smol mining update

* Revert "smol mining update"

This reverts commit 9a0bd466ff.

* the .wav files i will use

* the rest that is being added for now

* fixes your stuff

* makes the crusher purchasable

* fixes legion's trophy

* so many icons and oggs

* SIF and more icons

* even more icons, sorry

* new modkits, yay

* oh come on, it didn't update

* some bosses seen to be ready

* Glory Kill system, should work just fine

* even more icons, jeez, also, elite mods

* oh hey, i got the icon

* almost done

* icons and meme dragon

* it's icon was hidden and i didn't notice

* why do i hear boss music ?

* one day...

* while Nano was...

* not continuing that

* stole some compatibility stuff

* the end is near

* some stuff to make stuff work

* probably one of the last commits

* king goat itself

* THE ERRORS, THEY'RE EVERYWHERE

* so close...

* the new ruins should spawn now

* should be the last commit, let's test it

* Now The Gladiator actually exists

* make them mad, and toggle their music

* oh, wait, need to give you the new files

* i think i saved someone's ears

* missing areas, i'm sorry

* good luck fighting KG without a ladder

* just leave a comment, nothing else

* fixes double spawn at least for hiero, aka why the fuck make two of the same proc and not remove 1st

* invisible hat, not anymore

* takes some stuff before bob even merges it on theirs

* how did these icons disappear ?

* fixes some oopsies

* sand plz help

* *fixes your thing*

* and i think i fixed the other

* fixes

* no async needed

* im done, just merge this useless thing

Co-authored-by: crazyraio2 <44246096+crazyraio2@users.noreply.github.com>
This commit is contained in:
Enric Gabriel
2020-07-25 20:04:07 -03:00
committed by GitHub
co-authored by crazyraio2
parent fd16319e61
commit d312fbc4db
171 changed files with 9833 additions and 259 deletions
+3
View File
@@ -0,0 +1,3 @@
/datum/action/small_sprite/drake/akatosh
small_icon = 'sandcode/icons/mob/lavaland/drakeling_greyscale.dmi'
small_icon_state = "ash_whelp"
+33
View File
@@ -0,0 +1,33 @@
/datum/map_template/ruin/lavaland/king_goat_boss
name = "King Goat Boss Ruin"
id = "kinggoatboss"
description = "Abandon All Hope Ye Who Enter Here."
suffix = "kinggoatboss.dmm"
always_place = TRUE
allow_duplicates = FALSE
cost = 0
/datum/map_template/ruin/lavaland/sin/wrath
name = "Ruin of Wrath"
id = "wrathruin"
description = "RIP AND TEAR, UNTIL IT IS DONE."
suffix = "lavaland_surface_wrath.dmm"
/datum/map_template/ruin/lavaland/rogue
name = "Rogue's Arena"
id = "roguearena"
description = "LOOK AT YOU HACKER."
suffix = "lavaland_surface_rogue.dmm"
cost = 0
always_place = TRUE
allow_duplicates = FALSE
//always spawn sif's summoner sword
/datum/map_template/ruin/lavaland/sif
name = "Sif's Sword"
id = "sif"
description = "A raised platform of rock leading to a giant sword in the ground. Weird..."
suffix = "lavaland_surface_sif_spawn.dmm"
always_place = TRUE
allow_duplicates = FALSE
cost = 0
@@ -0,0 +1,12 @@
//argent
/datum/status_effect/blooddrunk/argent
id = "argent"
duration = 100
tick_interval = 0
alert_type = /obj/screen/alert/status_effect/argent
/obj/screen/alert/status_effect/argent
name = "Argent Energized"
desc = "Argent energy rushes through your body! You'll only take 10% damage for the duration of the energy rush!"
icon = 'sandcode/icons/mob/screen_alert.dmi'
icon_state = "argent"
@@ -0,0 +1,11 @@
/datum/status_effect/crusher_mark/harm
id = "crusher_mark_harm"
duration = 100
/datum/status_effect/crusher_mark/harm/on_apply()
. = ..()
marked_underlay = mutable_appearance('icons/effects/effects.dmi', "shield2")
marked_underlay.pixel_x = -owner.pixel_x
marked_underlay.pixel_y = -owner.pixel_y
owner.underlays += marked_underlay
return TRUE