Deploy to GitHub pages

This commit is contained in:
github-actions[bot]
2026-08-26 00:26:58 +00:00
committed by GitHub
commit 835dffb4c8
2864 changed files with 11879 additions and 0 deletions
+49
View File
@@ -0,0 +1,49 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/camera/README.md - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>AI Freelook <aside>code/modules/mob/camera/README.md</aside> <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/camera/README.md"><img src="git.png" width="16" height="16" title="code/modules/mob/camera/README.md"></a></h1><table class="summary" cellspacing="0"><tr><td colspan="2"><h2 id="credits">Credits</h2>
<p>Initial code credit for this goes to Uristqwerty.
Debugging, functionality, all comments and porting by Giacom.</p>
<h2 id="what-is-this">What is this?</h2>
<p>This is a replacement for the current camera movement system, of the AI. Before
this, the AI had to move between cameras and could only see what the cameras
could see. Not only this but the cameras could see through walls, which created
problems. With this, the AI controls an &quot;AI Eye&quot; mob, which moves just like a
ghost; such as moving through walls and being invisible to players. The AI's eye
is set to this mob and then we use a system (explained below) to determine what
the cameras around the AI Eye can and cannot see. If the camera cannot see a
turf, it will black it out, otherwise it won't and the AI will be able to see
it. This creates several features, such as.. no more see-through-wall cameras,
easier to control camera movement, easier tracking, the AI only being able to
track mobs which are visible to a camera, only trackable mobs appearing on the
mob list and many more.</p>
<h2 id="how-it-works">How it Works</h2>
<p>It works by first creating a camera network datum. Inside of this camera network
are &quot;chunks&quot; (which will be explained later) and &quot;cameras&quot;. The cameras list is
kept up to date by obj/machinery/camera/New() and Destroy().</p>
<p>Next the camera network has chunks. These chunks are a 16x16 tile block of turfs
and cameras contained inside the chunk. These turfs are then sorted out based on
what the cameras can and cannot see. If none of the cameras can see the turf,
inside the 16x16 block, it is listed as an &quot;obscured&quot; turf. Meaning the AI won't
be able to see it.</p>
<h2 id="how-it-updates">How it Updates</h2>
<p>The camera network uses a streaming method in order to effeciently update
chunks. Since the server will have doors opening, doors closing, turf being
destroyed and other lag inducing stuff, we want to update it under certain
conditions and not every tick.</p>
<p>The chunks are not created straight away, only when an AI eye moves into it's
area is when it gets created. One a chunk is created, when a non glass door
opens/closes or an opacity turf is destroyed, we check to see if an AI Eye is
looking in the area. We do this with the &quot;seenby&quot; list, which updates everytime
an AI is near a chunk. If there is an AI eye inside the area, we update the
chunk that the changed atom is inside and all surrounding chunks, since a
camera's vision could leak onto another chunk. If there is no AI Eye, we instead
flag the chunk to update whenever it is loaded by an AI Eye. This is basically
how the chunks update and keep it in sync. We then add some lag reducing
measures, such as an UPDATE_BUFFER which stops a chunk from updating too many
times in a certain time-frame, only updating if the changed atom was blocking
sight; for example, we don't update glass airlocks or floors.</p>
<h2 id="where-is-everything">Where is Everything?</h2>
<ul>
<li><code>cameranet.dm</code>: Everything about the cameranet datum.</li>
<li><code>chunk.dm</code>: Everything about the chunk datum.</li>
<li><code>eye.dm</code>: Everything about the AI and the AIEye.</li>
<li><code>updating.dm</code>: Everything about triggers that will update chunks.</li>
</ul></td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
+2
View File
@@ -0,0 +1,2 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/camera/chunk.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/camera/chunk.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/camera/chunk.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/camera/chunk.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/camerachunk.html">/datum/camerachunk</a></th><td>A 16x16 grid of the map with a list of turfs that can be seen, are visible and are dimmed.
Allows camera eyes to stream these chunks and know what they can and cannot see.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
+6
View File
@@ -0,0 +1,6 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/camera/eye.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/camera/eye.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/camera/eye.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/camera/eye.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/camera/eye.html">/mob/camera/eye</a></th><td>Camera eyes are remote-control mobs that can move and see throughout the global cameranet.
They're used in AI eyes, holograms, advanced camera consoles, abductor consoles, shuttle consoles,
and xenobiology consoles. When created, the user with which they are initialized will be granted control,
and their movements will be relayed to the camera eye instead. When destroyed, the user's control of the
camera eye will be released; if they were previously remote controlling another object (such as another
camera eye) then they will be put back in control of that object; otherwise they will return to their body.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/basic_mob.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/basic_mob.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/basic_mob.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/basic_mob.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/basic.html">/mob/living/basic</a></th><td>Basic mobs are a modern replacement for the simple_animal/&quot;simple mob&quot;
system. Rather than deep type trees with overrides for AI, basic mobs rely
on their AI controllers for the majority of their behavior.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/farm_animals/deer_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/farm_animals/deer_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/farm_animals/deer_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/farm_animals/deer_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/find_and_hunt_target.html">find_and_hunt_target</a>/drink_water</th><td>subtree to go around drinking water</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/find_and_hunt_target.html">find_and_hunt_target</a>/graze</th><td>subtree to go around grazing</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/play_with_friends</th><td>subtree to go around playing with other deers</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/find_and_hunt_target.html">find_and_hunt_target</a>/mark_territory</th><td>subtree to mark trees as territories</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/farm_animals/goat.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/farm_animals/goat.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/farm_animals/goat.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/farm_animals/goat.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/goat</th><td>Goats are normally content to sorta hang around and crunch any plant in sight, but they will go ape on someone who attacks them.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/friendly/crab.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/friendly/crab.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/friendly/crab.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/friendly/crab.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/crab</th><td>Crabs don't do much, but they want to live. They will flee when attacked, but will opportunistically melee attack people who do</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/friendly/diona_nymph.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/friendly/diona_nymph.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/friendly/diona_nymph.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/friendly/diona_nymph.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/diona_nymph</th><td>Diona nymphs want to eat plant matter to get to evolution stage, but won't evolve or sample blood on their own. They flee when attacked.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/friendly/lightgeist.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/friendly/lightgeist.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/friendly/lightgeist.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/friendly/lightgeist.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/targeting_strategy/lightgeist.html">/datum/targeting_strategy/lightgeist</a></th><td>Attack only mobs who have damage that we can heal, I think this is specific enough not to be a generic type</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/friendly/mouse.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/friendly/mouse.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/friendly/mouse.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/friendly/mouse.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/mouse</th><td>The mouse AI controller</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/flee_target.html">flee_target</a>/mouse</th><td>Don't look for anything to run away from if you are distracted by being adjacent to cheese</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/friendly/nian_caterpillar.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/friendly/nian_caterpillar.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/friendly/nian_caterpillar.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/friendly/nian_caterpillar.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/<a href="datum/action/cooldown.html">cooldown</a>/mob_cooldown/spin_mothsilk</th><td>Place some grappling tentacles underfoot</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/friendly/snake.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/friendly/snake.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/friendly/snake.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/friendly/snake.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/snake</th><td>Snakes are primarily concerned with getting those tasty, tasty mice, but aren't afraid to strike back at those who attack them</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1,2 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/alien/alien_mob_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/alien/alien_mob_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/alien/alien_mob_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/alien/alien_mob_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/idle_behavior/idle_random_walk.html">idle_behavior/idle_random_walk</a>/plant_weeds</th><td>Alien projectile
Try to avoid friendly fire, and has a 3 second delay.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/bees/bee_ai_behaviors.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a><a href="code/modules/mob/living/basic/hostile/bees/bee_ai_behaviors.html#define">Define Details</a></header><main><h1>code/modules/mob/living/basic/hostile/bees/bee_ai_behaviors.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bee_ai_behaviors.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bee_ai_behaviors.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/mob/living/basic/hostile/bees/bee_ai_behaviors.html#define/AGGRO_DISTANCE_FROM_HIVE">AGGRO_DISTANCE_FROM_HIVE</a></th><td>if we have a hive, this will be our aggro distance</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/AGGRO_DISTANCE_FROM_HIVE"><aside class="declaration">#define </aside>AGGRO_DISTANCE_FROM_HIVE <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bee_ai_behaviors.dm#L2"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bee_ai_behaviors.dm 2"></a></h3><p>if we have a hive, this will be our aggro distance</p></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/bees/bees.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a><a href="code/modules/mob/living/basic/hostile/bees/bees.html#define">Define Details</a></header><main><h1>code/modules/mob/living/basic/hostile/bees/bees.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bees.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bees.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/mob/living/basic/hostile/bees/bees.html#define/BEE_TRAY_RECENT_VISIT">BEE_TRAY_RECENT_VISIT</a></th><td>How long in deciseconds until a tray can be visited by a bee again</td></tr><tr><th><a href="code/modules/mob/living/basic/hostile/bees/bees.html#define/BEE_DEFAULT_COLOUR">BEE_DEFAULT_COLOUR</a></th><td>the colour we make the stripes of the bee if our reagent has no colour (or we have no reagent)</td></tr><tr><th><a href="code/modules/mob/living/basic/hostile/bees/bees.html#define/BEE_POLLINATE_YIELD_CHANCE">BEE_POLLINATE_YIELD_CHANCE</a></th><td>chance to increase yield of plant</td></tr><tr><th><a href="code/modules/mob/living/basic/hostile/bees/bees.html#define/BEE_POLLINATE_PEST_CHANCE">BEE_POLLINATE_PEST_CHANCE</a></th><td>chance to decrease pest of plant</td></tr><tr><th><a href="code/modules/mob/living/basic/hostile/bees/bees.html#define/BEE_POLLINATE_POTENCY_CHANCE">BEE_POLLINATE_POTENCY_CHANCE</a></th><td>chance to increase potancy of plant</td></tr><tr><th><a href="code/modules/mob/living/basic/hostile/bees/bees.html#define/BEE_FOODGROUPS">BEE_FOODGROUPS</a></th><td>the bee food contents</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/BEE_DEFAULT_COLOUR"><aside class="declaration">#define </aside>BEE_DEFAULT_COLOUR <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bees.dm#L2"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bees.dm 2"></a></h3><p>the colour we make the stripes of the bee if our reagent has no colour (or we have no reagent)</p><h3 id="define/BEE_FOODGROUPS"><aside class="declaration">#define </aside>BEE_FOODGROUPS <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bees.dm#L6"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bees.dm 6"></a></h3><p>the bee food contents</p><h3 id="define/BEE_POLLINATE_PEST_CHANCE"><aside class="declaration">#define </aside>BEE_POLLINATE_PEST_CHANCE <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bees.dm#L4"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bees.dm 4"></a></h3><p>chance to decrease pest of plant</p><h3 id="define/BEE_POLLINATE_POTENCY_CHANCE"><aside class="declaration">#define </aside>BEE_POLLINATE_POTENCY_CHANCE <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bees.dm#L5"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bees.dm 5"></a></h3><p>chance to increase potancy of plant</p><h3 id="define/BEE_POLLINATE_YIELD_CHANCE"><aside class="declaration">#define </aside>BEE_POLLINATE_YIELD_CHANCE <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bees.dm#L3"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bees.dm 3"></a></h3><p>chance to increase yield of plant</p><h3 id="define/BEE_TRAY_RECENT_VISIT"><aside class="declaration">#define </aside>BEE_TRAY_RECENT_VISIT <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/bees/bees.dm#L1"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/bees/bees.dm 1"></a></h3><p>How long in deciseconds until a tray can be visited by a bee again</p></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/demons/demon_loot.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/demons/demon_loot.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/demons/demon_loot.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/demons/demon_loot.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/organ.html">organ</a>/<a href="obj/item/organ/internal.html">internal</a>/heart/demon/shadow</th><td>SHADOW DEMON HEART</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/organ.html">organ</a>/<a href="obj/item/organ/internal.html">internal</a>/heart/demon/pulse</th><td>PULSE DEMON HEART</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/demons/pulse_demon.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/demons/pulse_demon.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/demons/pulse_demon.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/demons/pulse_demon.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/basic/demon/pulse_demon.html">/mob/living/basic/demon/pulse_demon</a></th><td>Conversion ratio from Watt ticks to joules.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/demons/slaughter_demon.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/demons/slaughter_demon.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/demons/slaughter_demon.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/demons/slaughter_demon.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/basic.html">basic</a>/demon/slaughter</th><td>The Monster</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/basic.html">basic</a>/demon/slaughter/cult</th><td>Summoned as part of the cult objective &quot;Bring the Slaughter&quot;</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/giant_spider/giant_spider_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/giant_spider/giant_spider_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/giant_spider/giant_spider_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/giant_spider/giant_spider_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/giant_spider</th><td>Attacks people it can see, spins webs if it can't see anything to attack.</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/giant_spider/retaliate</th><td>Used by Araneus, who only attacks those who attack first. He is house-trained and will not web up the HoS office.</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/find_unwebbed_turf</th><td>Search for a nearby location to put webs on</td></tr><tr><th><a href="datum/ai_behavior/find_unwebbed_turf.html">/datum/ai_behavior/find_unwebbed_turf</a></th><td>Find an unwebbed nearby turf and store it</td></tr><tr><th><a href="datum/ai_planning_subtree/spin_web.html">/datum/ai_planning_subtree/spin_web</a></th><td>Run the spin web behaviour if we have an ability to use for it</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/spin_web</th><td>Move to an unwebbed nearby turf and web it up</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/find_unwrapped_target</th><td>Search for a nearby location to put webs on</td></tr><tr><th><a href="datum/ai_behavior/find_unwrapped_target.html">/datum/ai_behavior/find_unwrapped_target</a></th><td>Find an unwrapped target and store it</td></tr><tr><th><a href="datum/ai_planning_subtree/wrap_target.html">/datum/ai_planning_subtree/wrap_target</a></th><td>Run the wrap behaviour if we have an ability to use for it</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/wrap_target</th><td>Move to an unwrapped item and wrap it</td></tr><tr><th><a href="datum/ai_planning_subtree/lay_eggs.html">/datum/ai_planning_subtree/lay_eggs</a></th><td>Run the egg laying behavior</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/lay_eggs</th><td>Attempt to lay eggs if we're fed</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/simple_find_target.html">simple_find_target</a>/cling_spider</th><td>Spider only attacks when it has the valid order.</td></tr><tr><th><a href="datum/ai_planning_subtree/cling_spider_follow.html">/datum/ai_planning_subtree/cling_spider_follow</a></th><td>Spider follows who created it</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/cling_spider_follow</th><td>Attempt to follow the owner</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/hivebot_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/hivebot_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/hivebot_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/hivebot_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/ai_behavior/relay_message.html">/datum/ai_behavior/relay_message</a></th><td>behavior that allow us to go communicate with other hivebots</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/megafauna/bluespace_horror/bluespace_horror_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/megafauna/bluespace_horror/bluespace_horror_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/megafauna/bluespace_horror/bluespace_horror_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/megafauna/bluespace_horror/bluespace_horror_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/horror_blink_dodge</th><td>Dodge!</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/omega_fireball_fan</th><td>Bring them down!</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/megafauna/kidan_princess/kidan_princess.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/megafauna/kidan_princess/kidan_princess.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/megafauna/kidan_princess/kidan_princess.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/megafauna/kidan_princess/kidan_princess.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/kidan_princess_halberd</th><td>Special Halberd loot</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/nether_mobs/incursion_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/nether_mobs/incursion_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/nether_mobs/incursion_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/nether_mobs/incursion_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/incursion</th><td>Prowls around when not attacking people</td></tr><tr><th><a href="datum/ai_planning_subtree/conjure_skulls.html">/datum/ai_planning_subtree/conjure_skulls</a></th><td>Run the conjure skulls action</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/conjure_skulls</th><td>Nyeh heh heh!</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/revenant/revenant_abilities.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/revenant/revenant_abilities.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/revenant/revenant_abilities.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/revenant/revenant_abilities.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/spell/aoe/revenant/haunt_object.html">/datum/spell/aoe/revenant/haunt_object</a></th><td>Makes objects be haunted and then throws them at conscious people to do damage, spooky!</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/spell.html">spell</a>/<a href="datum/spell/aoe.html">aoe</a>/<a href="datum/spell/aoe/revenant.html">revenant</a>/hallucinations</th><td>Gives everyone in a 7 tile radius 2 minutes of hallucinations</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/hostile/swarmers/swarmer_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/hostile/swarmers/swarmer_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/hostile/swarmers/swarmer_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/hostile/swarmers/swarmer_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/swarmer</th><td>Attacks people it can see, disintegrates things based on priority.</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/swarmer/lesser</th><td>Attacks people it can see, disintegrates things based on priority. More aggressive.</td></tr><tr><th><a href="datum/ai_planning_subtree/swarmer_replicate.html">/datum/ai_planning_subtree/swarmer_replicate</a></th><td>Run the barricade construction behaviour if we have an ability to use for it</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/swarmer_replicate</th><td>REPLICATE</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/swarmer_find_construction_target</th><td>Search for a nearby location to build on</td></tr><tr><th><a href="datum/ai_behavior/swarmer_find_construction_target.html">/datum/ai_behavior/swarmer_find_construction_target</a></th><td>Find a nearby clear turf and store it</td></tr><tr><th><a href="datum/ai_planning_subtree/swarmer_create_trap.html">/datum/ai_planning_subtree/swarmer_create_trap</a></th><td>Run the trap construction behaviour if we have an ability to use for it</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/swarmer_create_trap</th><td>Move to an open nearby turf and build a trap</td></tr><tr><th><a href="datum/ai_planning_subtree/swarmer_create_barricade.html">/datum/ai_planning_subtree/swarmer_create_barricade</a></th><td>Run the barricade construction behaviour if we have an ability to use for it</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/swarmer_create_barricade</th><td>Move to an open nearby turf and build a barricade</td></tr><tr><th><a href="datum/ai_planning_subtree/swarmer_share_resources.html">/datum/ai_planning_subtree/swarmer_share_resources</a></th><td>Run the resource sharing behavior</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/swarmer_share_resources</th><td>Share resources with the parent swarmer</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/basic.html">basic</a>/<a href="mob/living/basic/mining.html">mining</a>/<a href="mob/living/basic/mining/ash_whelp.html">ash_whelp</a>/ice</th><td>Ice whelp, the cold variant of ash whelps.</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/structure.html">structure</a>/whelp_statue</th><td>Ash whelp statue formed by them carving a rock</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_actions.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_actions.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_actions.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_actions.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/action/cooldown/mob_cooldown/fire_breath/cone.html">/datum/action/cooldown/mob_cooldown/fire_breath/cone</a></th><td>Shoot three lines of fire in a sort of fork pattern approximating a cone</td></tr><tr><th><a href="datum/action/cooldown/mob_cooldown/fire_breath/mass_fire.html">/datum/action/cooldown/mob_cooldown/fire_breath/mass_fire</a></th><td>Shoot fire in a whole bunch of directions</td></tr><tr><th><a href="datum/action/cooldown/mob_cooldown/fire_breath/ice.html">/datum/action/cooldown/mob_cooldown/fire_breath/ice</a></th><td>Breathe &quot;fire&quot; in a line (it's freezing cold)</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/<a href="datum/action/cooldown.html">cooldown</a>/<a href="datum/action/cooldown/mob_cooldown/fire_breath.html">mob_cooldown/fire_breath</a>/<a href="datum/action/cooldown/mob_cooldown/fire_breath/ice.html">ice</a>/eruption</th><td>Breathe really cold fire an area around them</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/<a href="datum/action/cooldown.html">cooldown</a>/<a href="datum/action/cooldown/mob_cooldown/fire_breath.html">mob_cooldown/fire_breath</a>/<a href="datum/action/cooldown/mob_cooldown/fire_breath/ice.html">ice</a>/eruption/fire</th><td>Fire subtype forash whelps</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a><a href="code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_ai.html#define">Define Details</a></header><main><h1>code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_ai.html#define/MIN_TIME_TO_BREATH_WEAPON">MIN_TIME_TO_BREATH_WEAPON</a></th><td>We won't use fire breath unless we have had the same target forthis long</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/basic_melee_attack_subtree.html">basic_melee_attack_subtree</a>/ash_whelp</th><td>Cancel melee attacks when we have our breath weapon</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/<a href="datum/ai_behavior/basic_melee_attack.html">basic_melee_attack</a>/ash_whelp</th><td>Cancel melee attacks when we have our breath weapon</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/find_and_hunt_target.html">find_and_hunt_target</a>/corpses/ash_whelp</th><td>Find other tasty dragons</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/<a href="datum/ai_behavior/hunt_target.html">hunt_target</a>/<a href="datum/ai_behavior/hunt_target/interact_with_target.html">interact_with_target</a>/dragon_cannibalise</th><td>Eat other dragons</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/sculpt_statues</th><td>Subtree to find icy rocks and create sculptures out of them</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/targeted_mob_ability.html">targeted_mob_ability</a>/ash_whelp</th><td>Select appropriate ability based on range</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/burn_trees</th><td>subtree to look fortrees and burn them with our flamethrower</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/MIN_TIME_TO_BREATH_WEAPON"><aside class="declaration">#define </aside>MIN_TIME_TO_BREATH_WEAPON <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_ai.dm#L2"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/ash_whelp/ash_whelp_ai.dm 2"></a></h3><p>We won't use fire breath unless we have had the same target forthis long</p></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/lavaland/goliath/goliath.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/lavaland/goliath/goliath.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/goliath/goliath.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/goliath/goliath.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/basic/mining/goliath.html">/mob/living/basic/mining/goliath</a></th><td>A slow but strong beast that tries to stun using its tentacles.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/lavaland/goliath/goliath_actions.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/lavaland/goliath/goliath_actions.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/goliath/goliath_actions.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/goliath/goliath_actions.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/action/cooldown/mob_cooldown/goliath_tentacles.html">/datum/action/cooldown/mob_cooldown/goliath_tentacles</a></th><td>Place some grappling tentacles underfoot</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/lavaland/goliath/goliath_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a><a href="code/modules/mob/living/basic/lavaland/goliath/goliath_ai.html#define">Define Details</a></header><main><h1>code/modules/mob/living/basic/lavaland/goliath/goliath_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/goliath/goliath_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/goliath/goliath_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/mob/living/basic/lavaland/goliath/goliath_ai.html#define/MIN_TIME_TO_TENTACLE">MIN_TIME_TO_TENTACLE</a></th><td>We won't use tentacles unless we have had the same target for this long</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/<a href="datum/ai_behavior/basic_melee_attack.html">basic_melee_attack</a>/goliath</th><td>Go for the tentacles if they're available</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/goliath_find_diggable_turf</th><td>If we got nothing better to do, find a turf we can search for tasty roots and such</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_behavior.html">ai_behavior</a>/goliath_dig</th><td>If we got nothing better to do, dig a little hole</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/MIN_TIME_TO_TENTACLE"><aside class="declaration">#define </aside>MIN_TIME_TO_TENTACLE <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/goliath/goliath_ai.dm#L2"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/goliath/goliath_ai.dm 2"></a></h3><p>We won't use tentacles unless we have had the same target for this long</p></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/lavaland/goliath/tentacle.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/lavaland/goliath/tentacle.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/lavaland/goliath/tentacle.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/lavaland/goliath/tentacle.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/status_effect/incapacitating/stun/goliath_tentacled.html">/datum/status_effect/incapacitating/stun/goliath_tentacled</a></th><td>Goliath tentacle stun with special removal conditions</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/minebots/minebot_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/minebots/minebot_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/minebots/minebot_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/minebots/minebot_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/basic_ranged_attack_subtree/minebot</th><td>operational datums is null because we dont use a ranged component, we use a gun in our contents</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/find_and_hunt_target.html">find_and_hunt_target</a>/hunt_ores/minebot</th><td>store ores in our body</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/pet_command.html">pet_command</a>/free/minebot</th><td>pet commands</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/minebots/minebot_upgrades.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/minebots/minebot_upgrades.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/minebots/minebot_upgrades.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/minebots/minebot_upgrades.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/mine_bot_upgrade</th><td>Minebot Melee Damage Upgrade</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/mine_bot_upgrade/health</th><td>Minebot Health Upgrade</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/slimepotion/sentience/mining</th><td>Minebot AI upgrade/sentience potion</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/mining/goldgrub/goldgrub.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/mining/goldgrub/goldgrub.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/mining/goldgrub/goldgrub.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/mining/goldgrub/goldgrub.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/basic/mining/goldgrub.html">/mob/living/basic/mining/goldgrub</a></th><td>An ore-devouring but easily scared creature</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/mining/goldgrub/goldgrub_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/mining/goldgrub/goldgrub_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/mining/goldgrub/goldgrub_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/mining/goldgrub/goldgrub_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/dig_away_from_danger</th><td>Only dig away if humans are around</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/mining/gutlunch.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/mining/gutlunch.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/mining/gutlunch.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/mining/gutlunch.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/basic/mining/gutlunch.html">/mob/living/basic/mining/gutlunch</a></th><td>Gutlunches, passive mods that devour blood and gibs</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/basic.html">basic</a>/<a href="mob/living/basic/mining.html">mining</a>/<a href="mob/living/basic/mining/gutlunch.html">gutlunch</a>/guthen</th><td>Lady gutlunch. They make the babby.</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/basic.html">basic</a>/<a href="mob/living/basic/mining.html">mining</a>/<a href="mob/living/basic/mining/gutlunch.html">gutlunch</a>/grublunch</th><td>Baby gutlunch</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/mining/hivelord_ai.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/mining/hivelord_ai.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/mining/hivelord_ai.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/mining/hivelord_ai.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/hivelord</th><td>Keep away and launch skulls at every opportunity</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/hivelord/legion</th><td>With evil speech</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/hivelord_brood</th><td>Chase and attack whatever we are targeting</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/hivelord_brood/advanced_legion</th><td>Same as hivelords, but go after corpses too</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/big_legion</th><td>Big Legion</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/flee_target.html">flee_target</a>/legion</th><td>Don't run away from friendlies</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/random_speech.html">random_speech</a>/legion</th><td>Make spooky sounds, if we have a corpse inside then impersonate them</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/summon_brood</th><td>Create brood</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/basic/retaliate/clown.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/basic/retaliate/clown.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/basic/retaliate/clown.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/basic/retaliate/clown.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/simple/clown</th><td>Fight back if attacked</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/brain/brain_emote.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/brain/brain_emote.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/brain/brain_emote.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/brain/brain_emote.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/emote/living/brain.html">/datum/emote/living/brain</a></th><td>Emotes usable by brains, but only while they're in MMIs.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/_defines.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a><a href="code/modules/mob/living/carbon/_defines.html#define">Define Details</a></header><main><h1>code/modules/mob/living/carbon/_defines.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/_defines.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/_defines.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/mob/living/carbon/_defines.html#define/SHOCK_MINOR">SHOCK_MINOR</a></th><td>Shock defines</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/SHOCK_MINOR"><aside class="declaration">#define </aside>SHOCK_MINOR <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/_defines.dm#L22"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/_defines.dm 22"></a></h3><p>Shock defines</p></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/alien/humanoid/humanoid_emote.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/alien/humanoid/humanoid_emote.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/alien/humanoid/humanoid_emote.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/alien/humanoid/humanoid_emote.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/emote.html">emote</a>/living/carbon/alien_humanoid</th><td>Emotes usable by humanoid xenomorphs.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/carbon_stripping.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/carbon_stripping.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/carbon_stripping.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/carbon_stripping.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/strippable_item/hand.html">/datum/strippable_item/hand</a></th><td>A strippable item for a hand</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
+2
View File
@@ -0,0 +1,2 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/give.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/give.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/give.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/give.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/status_effect.html">status_effect</a>/offering_item</th><td>Status effect given to mobs after they've offered an item to another player using the Give Item action (<a href="datum/click_intercept/give.html" title="/datum/click_intercept/give">/datum/click_intercept/give</a>).</td></tr><tr><th><a href="datum/click_intercept/give.html">/datum/click_intercept/give</a></th><td>While a mob has this intercept, left clicking on a carbon mob will attempt to offer their currently held item to that mob.</td></tr><tr><th><a href="atom/movable/screen/alert/take_item.html">/atom/movable/screen/alert/take_item</a></th><td>Alert which appears for a user when another player is attempting to offer them an item.
The user can click the alert to accept, or simply do nothing to not take the item.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/human/body_accessories.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/human/body_accessories.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/human/body_accessories.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/human/body_accessories.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/body_accessory.html">body_accessory</a>/tail/wingler_tail</th><td>Jay wingler fluff tail</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/body_accessory.html">body_accessory</a>/tail/tiny</th><td>Pretty ambiguous as to what species it belongs to, tail could've been injured or docked.</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/body_accessory.html">body_accessory</a>/tail/short</th><td>Same as above.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/human/human_emote.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/human/human_emote.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/human/human_emote.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/human/human_emote.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/emote.html">emote</a>/<a href="datum/emote/living/carbon/human.html">living/carbon/human</a>/monkey</th><td>Snowflake emotes only for le epic chimp</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/human/physiology.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/human/physiology.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/human/physiology.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/human/physiology.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/physiology.html">/datum/physiology</a></th><td>Datum that stores several modifiers in a way that isn't cleared by changing species</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/human/species/_species.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/human/species/_species.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/human/species/_species.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/human/species/_species.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/get_safe_species">get_safe_species</a></th><td>Returns a list of names of non-blacklisted or hazardous species.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/human/species/diona_species.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/human/species/diona_species.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/human/species/diona_species.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/human/species/diona_species.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/species.html">species</a>/diona/pod</th><td>Same name and everything; we want the same limitations on them; we just want their regeneration to kick in at all times and them to have special factions</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/human/species/skeleton_species.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/human/species/skeleton_species.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/human/species/skeleton_species.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/human/species/skeleton_species.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/species/skeleton.html">/datum/species/skeleton</a></th><td>The OG skellybones, quite OP. As of this comment, only available through ash-drake loot (2023-03-07)</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/species.html">species</a>/<a href="datum/species/skeleton.html">skeleton</a>/lich</th><td>Wizard subtype, subtype to allow balancing separately from other skellies</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/species.html">species</a>/<a href="datum/species/skeleton.html">skeleton</a>/brittle</th><td>The most common (and weakest) type, legion corpses and skeleton map spawners are these</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/carbon/superheroes.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/carbon/superheroes.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/carbon/superheroes.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/carbon/superheroes.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/spell.html">spell</a>/recruit</th><td>POWERS/ABILITIES CODE</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/silicon/ai/ai_programs.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/silicon/ai/ai_programs.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/silicon/ai/ai_programs.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/silicon/ai/ai_programs.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/ai_program.html">/datum/ai_program</a></th><td>The base program type, which holds info about each ability.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/silicon/pai/software/pai_software_base.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/silicon/pai/software/pai_software_base.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/silicon/pai/software/pai_software_base.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/silicon/pai/software/pai_software_base.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/pai_software.html">/datum/pai_software</a></th><td>Datum module for pAI software</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/silicon/robot/robot_modules.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/silicon/robot/robot_modules.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/silicon/robot/robot_modules.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/silicon/robot/robot_modules.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/gun.html">gun</a>/syringemalf</th><td>Malf Syringe Gun</td></tr><tr><th><a href="datum/robot_storage.html">/datum/robot_storage</a></th><td></td></tr><tr><th><a href="datum/robot_storage/material.html">/datum/robot_storage/material</a></th><td>This datum is an alternative to the energy storages, instead being recharged in different ways</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/silicon/silicon_laws.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/silicon/silicon_laws.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/silicon/silicon_laws.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/silicon/silicon_laws.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/pick_unique_lawset">pick_unique_lawset</a></th><td>returns a random non starting / kill crew lawset if the station has a unique ai lawset</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/bot/griefsky.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/bot/griefsky.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/bot/griefsky.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/bot/griefsky.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/bot.html">bot</a>/secbot/griefsky</th><td>This bot is powerful. If you managed to get 4 eswords somehow, you deserve this horror. Emag him for best results.</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/bot.html">bot</a>/secbot/griefsky/toy</th><td>A toy version of general griefsky!</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/constructs.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/constructs.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/constructs.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/constructs.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/simple_animal/hostile/construct/armoured.html">/mob/living/simple_animal/hostile/construct/armoured</a></th><td>Juggernaut</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/<a href="mob/living/simple_animal/hostile/construct/armoured.html">armoured</a>/hostile</th><td>actually hostile, will move around, hit things</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/wraith</th><td>Wraith</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/wraith/hostile</th><td>actually hostile, will move around, hit things</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/wraith/hostile/bubblegum</th><td>Used in bubblegum summoning. Needs MOB_SIZE_LARGE so crushers don't suffer</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/builder</th><td>Artificer</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/builder/hostile</th><td>actually hostile, will move around, hit things, heal other constructs</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/behemoth</th><td>Behemoth</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/behemoth/hostile</th><td>actually hostile, will move around, hit things</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/harvester</th><td>Harvester</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/<a href="mob/living/simple_animal/hostile/construct.html">construct</a>/harvester/hostile</th><td>actually hostile, will move around, hit things</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/friendly/dog.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/friendly/dog.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/friendly/dog.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/friendly/dog.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/pet/dog/corgi.html">pet/dog/corgi</a>/puppy/void</th><td>Tribute to the corgis born in nullspace</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/pet/dog/pug</th><td>Pugs</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1,2 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/heretic_monsters.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/heretic_monsters.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/heretic_monsters.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/heretic_monsters.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/rust_walker</th><td>Converts unconverted terrain, sprays pocket sand around</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/idle_behavior/idle_random_walk.html">idle_behavior/idle_random_walk</a>/rust</th><td>Moves a lot if healthy and on rust (to find more tiles to rust) or unhealthy and not on rust (to find healing rust)
Still moving in random directions though we're not really seeking it out</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_planning_subtree.html">ai_planning_subtree</a>/<a href="datum/ai_planning_subtree/use_mob_ability.html">use_mob_ability</a>/rust_walker</th><td>Use if we're not stood on rust right now</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/stalker</th><td>Changes shape and lies in wait when it has no target, uses EMP and attacks once it does</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/ai_controller.html">ai_controller</a>/basic_controller/raw_prophet</th><td>Walk and attack people, blind them when we can</td></tr><tr><th><a href="mob/living/basic/heretic_summon/armsy.html">/mob/living/basic/heretic_summon/armsy</a></th><td>The &quot;Terror of the Night&quot; / Armsy, a large worm made of multiple bodyparts that occupies multiple tiles</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/illusion.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/illusion.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/illusion.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/illusion.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/illusion/escape</th><td>Actual Types</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/illusion/cult</th><td>Cult Illusions</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/megafauna/ancient_robot.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/megafauna/ancient_robot.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/megafauna/ancient_robot.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/megafauna/ancient_robot.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/projectile.html">projectile</a>/energy/tesla_bolt</th><td>Leaving here for adminbus / so vetus still uses it.</td></tr><tr><th>/<a href="obj.html">obj</a>/effect/temp_visual/dragon_swoop/bubblegum/ancient_robot</th><td>this is the worst path I have ever made</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/megafauna/blood_drunk_miner.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/melee.html">melee</a>/<a href="obj/item/melee/energy.html">energy</a>/cleaving_saw/miner</th><td>nerfed saw because it is very murdery</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/megafauna/hierophant.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/effect/temp_visual/hierophant/wall</th><td>smoothing and pooling were not friends, but pooling is dead.</td></tr><tr><th>/<a href="obj.html">obj</a>/effect/temp_visual/hierophant/chaser</th><td>a hierophant's chaser. follows target around, moving and producing a blast every speed deciseconds.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/mining/elites/goliath_broodmother.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/mining/elites/goliath_broodmother.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/mining/elites/goliath_broodmother.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/mining/elites/goliath_broodmother.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/simple_animal/hostile/asteroid/elite/broodmother.html">/mob/living/simple_animal/hostile/asteroid/elite/broodmother</a></th><td>A stronger, faster variation of the goliath. Has the ability to spawn baby goliaths, which it can later detonate at will.
When it's health is below half, tendrils will spawn randomly around it. When it is below a quarter of health, this effect is doubled.
It's attacks are as follows:</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/mining/elites/herald.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/mining/elites/herald.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/mining/elites/herald.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/mining/elites/herald.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/simple_animal/hostile/asteroid/elite/herald.html">/mob/living/simple_animal/hostile/asteroid/elite/herald</a></th><td>A slow-moving projectile user with a few tricks up it's sleeve. Less unga-bunga than Colossus, with more cleverness in it's fighting style.
As it's health gets lower, the amount of projectiles fired per-attack increases.
It's attacks are as follows:</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/mining/elites/legionnaire.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/mining/elites/legionnaire.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/mining/elites/legionnaire.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/mining/elites/legionnaire.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/simple_animal/hostile/asteroid/elite/legionnaire.html">/mob/living/simple_animal/hostile/asteroid/elite/legionnaire</a></th><td>A towering skeleton, embodying the power of Legion.
As it's health gets lower, the head does more damage.
It's attacks are as follows:</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/mining/elites/pandora.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/mining/elites/pandora.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/mining/elites/pandora.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/mining/elites/pandora.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="mob/living/simple_animal/hostile/asteroid/elite/pandora.html">/mob/living/simple_animal/hostile/asteroid/elite/pandora</a></th><td>A box with a similar design to the Hierophant which trades large, single attacks for more frequent smaller ones.
As it's health gets lower, the time between it's attacks decrease.
It's attacks are as follows:</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/venus_human_trap.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/structure.html">structure</a>/alien/resin/flower_bud_enemy</th><td>inheriting basic attack/damage stuff from alien structures</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/hostile/winter_mobs.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/living/simple_animal/hostile/winter_mobs.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/hostile/winter_mobs.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/hostile/winter_mobs.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/winter/santa/stage_1</th><td>stage 1: slow melee</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/winter/santa/stage_2</th><td>stage 2: slow ranged</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/winter/santa/stage_3</th><td>stage 3: fast rapidfire ranged</td></tr><tr><th>/<a href="mob.html">mob</a>/<a href="mob/living.html">living</a>/<a href="mob/living/simple_animal.html">simple_animal</a>/<a href="mob/living/simple_animal/hostile.html">hostile</a>/winter/santa/stage_4</th><td>stage 4: fast spinebreaker</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/living/simple_animal/slime/slime_emote.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a><a href="code/modules/mob/living/simple_animal/slime/slime_emote.html#define">Define Details</a></header><main><h1>code/modules/mob/living/simple_animal/slime/slime_emote.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/slime/slime_emote.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/slime/slime_emote.dm"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/mob/living/simple_animal/slime/slime_emote.html#define/MOOD_RESET">MOOD_RESET</a></th><td>Sentinel value; passing this as mood sets mood to null.</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/MOOD_RESET"><aside class="declaration">#define </aside>MOOD_RESET <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/living/simple_animal/slime/slime_emote.dm#L2"><img src="git.png" width="16" height="16" title="code/modules/mob/living/simple_animal/slime/slime_emote.dm 2"></a></h3><p>Sentinel value; passing this as mood sets mood to null.</p></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
+1
View File
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/mob_misc_procs.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/mob_misc_procs.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/mob_misc_procs.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/mob_misc_procs.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/hit_zone_to_clothes_zone">hit_zone_to_clothes_zone</a></th><td>Convert the impact zone of a projectile to a clothing zone we can do a contamination check on</td></tr><tr><th>/proc/<a href="global.html#proc/shake_camera">shake_camera</a></th><td>Shake the camera of the person viewing the mob SO REAL!</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/human/human_body_markings.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/human/human_body_markings.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/human/human_body_markings.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/human/human_body_markings.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/tattoo</th><td>Tattoos applied post-round startup with tattoo guns in item_defines.dm</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/tattoo/tiger_body</th><td>Yep, this is repeated. To be fixed later</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/human/human_facial_hair.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/human/human_facial_hair.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/human/human_facial_hair.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/human/human_facial_hair.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/facial_hair/britstache</th><td>START VG HAIRSTYLES</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/facial_hair/muttonmus</th><td>END VG HAIRSTYLES</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1,3 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/human/human_hair.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/human/human_hair.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/human/human_hair.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/human/human_hair.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/hair/birdnest</th><td>START VG HAIRSTYLES</td></tr><tr><th><a href="datum/sprite_accessory/hair/dave.html">/datum/sprite_accessory/hair/dave</a></th><td>END VG HAIRSTYLES//</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/hair/bun4</th><td>Due to a vulp hairstyle called bun</td></tr><tr><th><a href="datum/sprite_accessory/hair/eighties_ponytail.html">/datum/sprite_accessory/hair/eighties_ponytail</a></th><td>//END POLARIS HAIRSTYLES///</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/hair/fluff/pinapple_fluff_hair</th><td>Ume hairs end here///
Fluff HairStyles//
Pineapple Salad hair fluff its for a slime..has to go under human</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/shared/shared_tail_markings.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/shared/shared_tail_markings.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/shared/shared_tail_markings.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/shared/shared_tail_markings.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/tail/shared/short_tip</th><td>Species-ambiguous, generic short tail.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/skrell/skrell_face.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/skrell/skrell_face.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/skrell/skrell_face.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/skrell/skrell_face.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/hair/fluff/zeke_fluff_tentacle</th><td>Zeke Fluff hair</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/tajaran/tajaran_head_markings.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/tajaran/tajaran_head_markings.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/tajaran/tajaran_head_markings.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/tajaran/tajaran_head_markings.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/tajara/muzzle_alt_taj</th><td>Companion marking for Tajaran Belly 2.</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/tajara/points_taj</th><td>Companion marking for Tajaran Points.</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/tajara/patchy_taj</th><td>Companion marking for Tajaran Patches.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/tajaran/tajaran_tail_markings.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/tajaran/tajaran_tail_markings.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/tajaran/tajaran_tail_markings.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/tajaran/tajaran_tail_markings.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/tail/tajara/taj_wingler_stripes</th><td>Tiger stripes.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/unathi/unathi_head_markings.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/unathi/unathi_head_markings.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/unathi/unathi_head_markings.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/unathi/unathi_head_markings.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/unathi/banded_una</th><td>Companion marking for Unathi Banded.</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/unathi/snout_narrow_una</th><td>Companion marking for Unathi Narrow Belly.</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/unathi/points_una</th><td>Companion marking for Unathi Points.</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/unathi/sharp/snout_narrow_una_sharp</th><td>Companion marking for Unathi Narrow Belly.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>
@@ -0,0 +1 @@
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/mob/new_player/sprite_accessories/vulpkanin/vulpkanin_head_markings.dm - Space Station 13</title></head><body><header><a href="index.html">Space Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/mob/new_player/sprite_accessories/vulpkanin/vulpkanin_head_markings.dm <a href="https://github.com/ParadiseSS13/Paradise/blob/8a8a00a2a9bec485351e5f219982b7315d3504fa/code/modules/mob/new_player/sprite_accessories/vulpkanin/vulpkanin_head_markings.dm"><img src="git.png" width="16" height="16" title="code/modules/mob/new_player/sprite_accessories/vulpkanin/vulpkanin_head_markings.dm"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/vulpkanin/muzzle_vulp</th><td>Companion marking for Vulpkanin Belly Alt..</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/vulpkanin/muzzle_ears_vulp</th><td>Companion marking for Vulpkanin Belly Alt..</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/vulpkanin/points_fade_vulp</th><td>Companion marking for Vulpkanin Points Fade.</td></tr><tr><th>/<a href="datum.html">datum</a>/sprite_accessory/body_markings/head/vulpkanin/points_sharp_vulp</th><td>Companion marking for Vulpkanin Points Sharp.</td></tr></table></main><footer>paradise.dme <a href="https://github.com/ParadiseSS13/Paradise/tree/8a8a00a2a9bec485351e5f219982b7315d3504fa">8a8a00a</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.11.0</a></footer></body></html>