forked from ParadiseSS13/Paradise
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
New Space Ruin: Drakehound Skiff Wreck (ParadiseSS13#27056)
* Skiff * Unathi_Breacher_Ruin * Fixes illegal file warning * Uses damage landmarks instead of burnt plating tiles * Wall changes, decals, space ruin datum * Rotated consoles, added small shelf of breaching tools * Config change for map * Undoes minor config change * Removes deathsound
- Loading branch information
1 parent
8352613
commit f49b312
Showing
10 changed files
with
1,291 additions
and
0 deletions.
There are no files selected for viewing
1,193 changes: 1,193 additions & 0 deletions
1,193
_maps/map_files/RandomRuins/SpaceRuins/unathi_skiff.dmm
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
57 changes: 57 additions & 0 deletions
57
code/modules/mob/living/simple_animal/hostile/drakehound.dm
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
/mob/living/simple_animal/hostile/drakehound_breacher | ||
name = "Drakehound Breacher" | ||
desc = "A unathi raider with a viscious streak." | ||
icon = 'icons/mob/simple_human.dmi' | ||
icon_state = "drakehound" | ||
icon_living = "drakehound" | ||
icon_dead = "drakehound_dead" // Does not actually exist. del_on_death. | ||
mob_biotypes = MOB_ORGANIC | MOB_HUMANOID | ||
speak_chance = 1 | ||
turns_per_move = 3 | ||
response_help = "pushes the" | ||
response_disarm = "shoves" | ||
response_harm = "slashes" | ||
speed = 0 | ||
maxHealth = 100 | ||
health = 100 | ||
|
||
harm_intent_damage = 5 | ||
obj_damage = 60 | ||
melee_damage_lower = 30 | ||
melee_damage_upper = 30 | ||
attacktext = "slashes" | ||
attack_sound = 'sound/weapons/bladeslice.ogg' | ||
minbodytemp = 0 | ||
|
||
atmos_requirements = list("min_oxy" = 0, "max_oxy" = 0, "min_tox" = 0, "max_tox" = 0, "min_co2" = 0, "max_co2" = 0, "min_n2" = 0, "max_n2" = 0) | ||
speak_emote = list("hisses") | ||
loot = list( | ||
/obj/effect/decal/cleanable/blood/innards, | ||
/obj/effect/decal/cleanable/blood, | ||
/obj/effect/gibspawner/generic, | ||
/obj/effect/gibspawner/generic) | ||
del_on_death = TRUE | ||
faction = list("pirate") | ||
sentience_type = SENTIENCE_OTHER | ||
footstep_type = FOOTSTEP_MOB_SHOE | ||
|
||
/mob/living/simple_animal/hostile/drakehound_breacher/Initialize(mapload) | ||
. = ..() | ||
if(prob(50)) | ||
loot = list( | ||
/obj/item/salvage/loot/pirate, | ||
/obj/effect/decal/cleanable/blood/innards, | ||
/obj/effect/decal/cleanable/blood, | ||
/obj/effect/gibspawner/generic, | ||
/obj/effect/gibspawner/generic) | ||
|
||
/mob/living/simple_animal/hostile/drakehound_breacher/Process_Spacemove(movement_dir = 0) | ||
return TRUE | ||
|
||
/mob/living/simple_animal/hostile/drakehound_breacher/ListTargetsLazy() | ||
return ListTargets() | ||
|
||
/mob/living/simple_animal/hostile/drakehound_breacher/Aggro() | ||
. = ..() | ||
if(target) | ||
playsound(loc, 'sound/effects/unathihiss.ogg', 70, TRUE) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters