Deploying to gh-pages from @ e8e0068531 🚀
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/actionspeed/_actionspeed_modifier.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/actionspeed/_actionspeed_modifier.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/actionspeed/_actionspeed_modifier.dm0"><img src="git.png" width="16" height="16" title="code/modules/actionspeed/_actionspeed_modifier.dm0"></a></h1><table class="summary" cellspacing="0"><tr><td colspan="2"><p>Actionspeed modification datums.</p>
|
||||
<pre><code>How action speed for mobs works
|
||||
</code></pre>
|
||||
<p>Action speed is now calculated by using modifier datums which are added to mobs. Some of them (nonvariable ones) are globally cached, the variable ones are instanced and changed based on need.</p>
|
||||
<p>This gives us the ability to have multiple sources of actionspeed, reliabily keep them applied and remove them when they should be</p>
|
||||
<p>THey can have unique sources and a bunch of extra fancy flags that control behaviour</p>
|
||||
<p>Previously trying to update action speed was a shot in the dark that usually meant mobs got stuck going faster or slower</p>
|
||||
<p>Actionspeed modification list is a simple key = datum system. Key will be the datum's ID if it is overridden to not be null, or type if it is not.</p>
|
||||
<p>DO NOT override datum IDs unless you are going to have multiple types that must overwrite each other. It's more efficient to use types, ID functionality is only kept for cases where dynamic creation of modifiers need to be done.</p>
|
||||
<p>When update actionspeed is called, the list of items is iterated, according to flags priority and a bunch of conditions
|
||||
this spits out a final calculated value which is used as a modifer to last_move + modifier for calculating when a mob
|
||||
can next move</p></td></tr><tr><th>/proc/<a href="global.html#proc/get_cached_actionspeed_modifier">get_cached_actionspeed_modifier</a></th><td>Grabs a STATIC MODIFIER datum from cache. YOU MUST NEVER EDIT THESE DATUMS, OR IT WILL AFFECT ANYTHING ELSE USING IT TOO!</td></tr><tr><td colspan="2"><p>Used for variable slowdowns like hunger/health loss/etc, works somewhat like the old list-based modification adds. Returns the modifier datum if successful
|
||||
How this SHOULD work is:
|
||||
1. Ensures type_id_datum one way or another refers to a /variable datum. This makes sure it can't be cached. This includes if it's already in the modification list.
|
||||
2. Instantiate a new datum if type_id_datum isn't already instantiated + in the list, using the type. Obviously, wouldn't work for ID only.
|
||||
3. Add the datum if necessary using the regular add proc
|
||||
4. If any of the rest of the args are not null (see: multiplicative slowdown), modify the datum
|
||||
5. Update if necessary</p>
|
||||
</td></tr><tr><th>/proc/<a href="global.html#proc/actionspeed_data_null_check">actionspeed_data_null_check</a></th><td>Checks if a action speed modifier is valid and not missing any data</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/NewBan.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/admin/NewBan.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/NewBan.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/NewBan.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/CreateBans">CreateBans</a></th><td>DEBUG</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/callproc/callproc.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/admin/callproc/callproc.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/callproc/callproc.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/callproc/callproc.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/WrapAdminProcCall">WrapAdminProcCall</a></th><td>Wrapper for proccalls where the datum is flagged as vareditted</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/force_event.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/admin/force_event.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/force_event.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/force_event.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/force_event</th><td>Force Event Panel</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/tag.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a> — <a href="code/modules/admin/tag.html#define">Define Details</a></header><main><h1>code/modules/admin/tag.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/tag.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/tag.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/admin/tag.html#define/TAGS_REFRESH">TAGS_REFRESH</a></th><td>Quick define for readability</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/TAGS_REFRESH"><aside class="declaration">#define </aside>TAGS_REFRESH <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/tag.dm#L47"><img src="git.png" width="16" height="16" title="code/modules/admin/tag.dm 47"></a></h3><p>Quick define for readability</p></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/verbs/SDQL2/SDQL_2_wrappers.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/verbs/SDQL2/SDQL_2_wrappers.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/_turf_in_offset">_turf_in_offset</a></th><td>Locating turfs</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/verbs/adminhelp.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/admin/verbs/adminhelp.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/verbs/adminhelp.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/verbs/adminhelp.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/send2otherserver">send2otherserver</a></th><td>Sends a message to a set of cross-communications-enabled servers using world topic calls</td></tr><tr><th>/proc/<a href="global.html#proc/check_admin_pings">check_admin_pings</a></th><td>Checks a given message to see if any of the words contain an active admin's ckey with an @ before it</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/verbs/pray.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/admin/verbs/pray.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/verbs/pray.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/verbs/pray.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/message_centcom">message_centcom</a></th><td>Used by communications consoles to message CentCom</td></tr><tr><th>/proc/<a href="global.html#proc/message_syndicate">message_syndicate</a></th><td>Used by communications consoles to message the Syndicate</td></tr><tr><th>/proc/<a href="global.html#proc/nuke_request">nuke_request</a></th><td>Used by communications consoles to request the nuclear launch codes</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/verbs/randomverbs.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/admin/verbs/randomverbs.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/verbs/randomverbs.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/verbs/randomverbs.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/firing_squad">firing_squad</a></th><td>firing_squad is a proc for the :B:erforate smite to shoot each individual bullet at them, so that we can add actual delays without sleep() nonsense</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/view_variables/debug_variables.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/admin/view_variables/debug_variables.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/view_variables/debug_variables.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/view_variables/debug_variables.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/debug_variable">debug_variable</a></th><td>Get displayed variable in VV variable list</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/admin/view_variables/view_variables.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a> — <a href="code/modules/admin/view_variables/view_variables.html#define">Define Details</a></header><main><h1>code/modules/admin/view_variables/view_variables.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/view_variables/view_variables.dm0"><img src="git.png" width="16" height="16" title="code/modules/admin/view_variables/view_variables.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/admin/view_variables/view_variables.html#define/ICON_STATE_CHECKED">ICON_STATE_CHECKED</a></th><td>this dmi is checked. We don't check this one anymore.</td></tr><tr><th><a href="code/modules/admin/view_variables/view_variables.html#define/ICON_STATE_NULL">ICON_STATE_NULL</a></th><td>this dmi has null-named icon_state, allowing it to show a sprite on vv editor.</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/ICON_STATE_CHECKED"><aside class="declaration">#define </aside>ICON_STATE_CHECKED <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/view_variables/view_variables.dm#L1"><img src="git.png" width="16" height="16" title="code/modules/admin/view_variables/view_variables.dm 1"></a></h3><p>this dmi is checked. We don't check this one anymore.</p><h3 id="define/ICON_STATE_NULL"><aside class="declaration">#define </aside>ICON_STATE_NULL <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/admin/view_variables/view_variables.dm#L2"><img src="git.png" width="16" height="16" title="code/modules/admin/view_variables/view_variables.dm 2"></a></h3><p>this dmi has null-named icon_state, allowing it to show a sprite on vv editor.</p></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/_common/antag_spawner.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/_common/antag_spawner.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/_common/antag_spawner.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/_common/antag_spawner.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/antag_spawner/contract</th><td>WIZARD</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/antag_spawner/nuke_ops</th><td>BORGS AND OPERATIVES</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/antag_spawner/nuke_ops/clown</th><td>CLOWN OP</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/antag_spawner/nuke_ops/borg_tele</th><td>SYNDICATE BORG</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/antag_spawner/slaughter_demon</th><td>SLAUGHTER DEMON</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/bloodsucker/bloodsucker_powers.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/bloodsucker/bloodsucker_powers.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/bloodsucker/bloodsucker_powers.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/bloodsucker/bloodsucker_powers.dm0"></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>/<a href="datum/action/cooldown/bloodsucker.html">bloodsucker</a>/targeted</th><td>TARGETTED POWERS</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/changeling/changeling.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a> — <a href="code/modules/antagonists/changeling/changeling.html#define">Define Details</a></header><main><h1>code/modules/antagonists/changeling/changeling.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/changeling/changeling.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/changeling/changeling.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/antagonists/changeling/changeling.html#define/FORMAT_CHEM_CHARGES_TEXT">FORMAT_CHEM_CHARGES_TEXT</a></th><td>Helper to format the text that gets thrown onto the chem hud element.</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/FORMAT_CHEM_CHARGES_TEXT"><aside class="declaration">#define </aside>FORMAT_CHEM_CHARGES_TEXT<aside>(charges)</aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/changeling/changeling.dm#L6"><img src="git.png" width="16" height="16" title="code/modules/antagonists/changeling/changeling.dm 6"></a></h3><p>Helper to format the text that gets thrown onto the chem hud element.</p></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.0</a></footer></body></html>
|
||||
@@ -0,0 +1,13 @@
|
||||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/antagonists/changeling/powers/mutations.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/changeling/powers/mutations.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/changeling/powers/mutations.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/changeling/powers/mutations.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/changeling/weapon/arm_blade</th><td>*<em><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><br />
|
||||
|<em><strong><strong><strong><strong><strong><strong><strong>ARM BLADE</strong></strong></strong></strong></strong></strong></strong></em>|
|
||||
*</strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></em></td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/changeling/weapon/tentacle</th><td><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><br />
|
||||
|<em><strong><strong><strong><strong><strong>COMBAT TENTACLES</strong></strong></strong></strong></strong></em></strong>|
|
||||
*</strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong>*</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/changeling/weapon/shield</th><td><em><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><em><br />
|
||||
|<strong><strong><strong><strong><strong><strong><strong><strong>SHIELD</strong></strong></strong></strong></strong></strong></strong></strong></em>|
|
||||
*</strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></em></td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/changeling/suit/organic_space_suit</th><td><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><br />
|
||||
|<em><strong><strong><strong><strong>SPACE SUIT + HELMET</strong></strong></strong></strong></em></strong>|
|
||||
*</strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong>*</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/changeling/suit/armor</th><td>*<em><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><br />
|
||||
|<em><strong><strong><strong><strong><strong><strong><strong><strong>ARMOR</strong></strong></strong></strong></strong></strong></strong></strong></em>|
|
||||
*</strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></em></td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/changeling/gloves</th><td>*<em><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><strong><br />
|
||||
|<em><strong><strong><strong><strong><strong><strong><strong><strong>CLAWS</strong></strong></strong></strong></strong></strong></strong></strong></em>|
|
||||
*</strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></strong></em></td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/cult/cult_comms.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/cult/cult_comms.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/cult/cult_comms.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/cult/cult_comms.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/action.html">action</a>/innate/cult/master/pulse</th><td>ELDRITCH PULSE</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/devil/imp/imp.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/devil/imp/imp.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/devil/imp/imp.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/devil/imp/imp.dm0"></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>/imp</th><td>The Monster</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/disease/disease_abilities.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/disease/disease_abilities.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/disease/disease_abilities.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/disease/disease_abilities.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/disease_ability/symptom/mild</th><td>BASE SYMPTOM TYPES</td></tr><tr><th>/<a href="datum.html">datum</a>/disease_ability/symptom/mild/cough</th><td>MILD</td></tr><tr><th>/<a href="datum.html">datum</a>/disease_ability/symptom/medium/shedding</th><td>MEDIUM</td></tr><tr><th>/<a href="datum.html">datum</a>/disease_ability/symptom/powerful/fire</th><td>POWERFUL</td></tr><tr><th>/<a href="datum.html">datum</a>/disease_ability/symptom/powerful/heal/starlight</th><td>HEALING SUBTYPE</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/eldritch_cult/eldritch_effects.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/eldritch_cult/eldritch_effects.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/eldritch_cult/eldritch_effects.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/eldritch_cult/eldritch_effects.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/reality_smash_tracker.html">/datum/reality_smash_tracker</a></th><td>#Reality smash tracker</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/eldritch_cult/eldritch_knowledge.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/eldritch_cult/eldritch_knowledge.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/eldritch_knowledge.html">/datum/eldritch_knowledge</a></th><td>#Eldritch Knowledge</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/eldritch_knowledge.html">eldritch_knowledge</a>/spell</th><td>Subtypes</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/eldritch_knowledge.html">eldritch_knowledge</a>/spell/basic</th><td>Base lore</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/eldritch_cult/eldritch_monster_antag.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/eldritch_cult/eldritch_monster_antag.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/eldritch_cult/eldritch_monster_antag.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/eldritch_cult/eldritch_monster_antag.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/antagonist.html">antagonist</a>/heretic_monster</th><td>Tracking reasons</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/eldritch_cult/knowledge/rust_lore.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/eldritch_cult/knowledge/rust_lore.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/rust_spread.html">/datum/rust_spread</a></th><td>#Rust spread datum</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/gang/handler.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/gang/handler.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/gang/handler.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/gang/handler.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/gang_handler.html">/datum/gang_handler</a></th><td>A special datum used by the families gamemode and dynamic rulesets to centralize code. "Family" and "gang" used interchangeably in code.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/gang/themes.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/gang/themes.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/gang/themes.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/gang/themes.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/gang_theme.html">/datum/gang_theme</a></th><td>Gang themes for the Families gamemode. Used to determine the RP theme of the round, what gangs are present, and what their objectives are.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/revolution/revolution.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/revolution/revolution.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/revolution/revolution.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/revolution/revolution.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/antagonist.html">antagonist</a>/revolution_enemy</th><td>"Enemy of the Revolutionary", given to heads and security when the revolution wins</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/slaughter/slaughter.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/slaughter/slaughter.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/slaughter/slaughter.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/slaughter/slaughter.dm0"></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>/slaughter</th><td>The Monster</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/swarmer/swarmer.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/swarmer/swarmer.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/swarmer/swarmer.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/swarmer/swarmer.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/deactivated_swarmer</th><td>Deactivated swarmer shell</td></tr><tr><th><a href="mob/living/simple_animal/hostile/swarmer.html">/mob/living/simple_animal/hostile/swarmer</a></th><td>The Mob itself</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/traitor/equipment/contractor.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/traitor/equipment/contractor.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/traitor/equipment/contractor.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/traitor/equipment/contractor.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/antagonist/traitor/contractor_support.html">/datum/antagonist/traitor/contractor_support</a></th><td>Support unit gets it's own very basic antag datum for admin logging.</td></tr><tr><th>/<a href="datum.html">datum</a>/team/contractor_team</th><td>Team for storing both the contractor and their support unit - only really for the HUD and admin logging.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/wizard/equipment/artefact.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/wizard/equipment/artefact.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/wizard/equipment/artefact.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/wizard/equipment/artefact.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/veilrender</th><td>Veil Render</td></tr><tr><th>/<a href="obj.html">obj</a>/singularity/wizard</th><td>TEAR IN REALITY</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/scrying</th><td>Scrying</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/necromantic_stone</th><td>Necromantic Stone</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/antagonists/wizard/equipment/soulstone.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/antagonists/wizard/equipment/soulstone.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/antagonists/wizard/equipment/soulstone.dm0"><img src="git.png" width="16" height="16" title="code/modules/antagonists/wizard/equipment/soulstone.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/structure/constructshell</th><td>Transferring to constructs</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/arousal/arousal.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/arousal/arousal.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/arousal/arousal.dm0"><img src="git.png" width="16" height="16" title="code/modules/arousal/arousal.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/species.html">/datum/species</a></th><td>Datum that handles different species in the game.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/assembly/infrared.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/assembly/infrared.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/assembly/infrared.dm0"><img src="git.png" width="16" height="16" title="code/modules/assembly/infrared.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/effect/beam/i_beam</th><td>IBeam</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.0</a></footer></body></html>
|
||||
@@ -0,0 +1,17 @@
|
||||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/asset_cache/readme.md - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>Asset cache system <aside>code/modules/asset_cache/readme.md</aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/asset_cache/readme.md0"><img src="git.png" width="16" height="16" title="code/modules/asset_cache/readme.md0"></a></h1><table class="summary" cellspacing="0"><tr><td colspan="2"><h2 id="framework-for-managing-browser-assets-javascript-css-images-etc">Framework for managing browser assets (javascript,css,images,etc)</h2>
|
||||
<p>This manages getting the asset to the client without doing unneeded re-sends, as well as utilizing any configured cdns.</p>
|
||||
<p>There are two frameworks for using this system:</p>
|
||||
<h3 id="asset-datum">Asset datum:</h3>
|
||||
<p>Make a datum in asset_list_items.dm with your browser assets for your thing.</p>
|
||||
<p>Checkout asset_list.dm for the helper subclasses</p>
|
||||
<p>The <code>simple</code> subclass will most likely be of use for most cases.</p>
|
||||
<p>Call get_asset_datum() with the type of the datum you created to get your asset cache datum</p>
|
||||
<p>Call .send(client|usr) on that datum to send the asset to the client. Depending on the asset transport this may or may not block.</p>
|
||||
<p>Call .get_url_mappings() to get an associated list with the urls your assets can be found at.</p>
|
||||
<h3 id="manual-backend">Manual backend:</h3>
|
||||
<p>See the documentation for <code>/datum/asset_transport</code> for the backend api the asset datums utilize.</p>
|
||||
<p>The global variable <code>SSassets.transport</code> contains the currently configured transport. </p>
|
||||
<h3 id="notes">Notes:</h3>
|
||||
<p>Because byond browse() calls use non-blocking queues, if your code uses output() (which bypasses all of these queues) to invoke javascript functions you will need to first have the javascript announce to the server it has loaded before trying to invoke js functions.</p>
|
||||
<p>To make your code work with any CDNs configured by the server, you must make sure assets are referenced from the url returned by <code>get_url_mappings()</code> or by asset_transport's <code>get_asset_url()</code>. (TGUI also has helpers for this.) If this can not be easily done, you can bypass the cdn using legacy assets, see the simple asset datum for details. </p>
|
||||
<p>CSS files that use url() can be made to use the CDN without needing to rewrite all url() calls in code by using the namespaced helper datum. See the documentation for <code>/datum/asset/simple/namespaced</code> for details.</p></td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/asset_cache/asset_cache_item.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/asset_cache/asset_cache_item.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/asset_cache/asset_cache_item.dm0"><img src="git.png" width="16" height="16" title="code/modules/asset_cache/asset_cache_item.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/asset_cache_item.html">/datum/asset_cache_item</a></th><td>An internal datum containing info on items in the asset cache. Mainly used to cache md5 info for speed.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.0</a></footer></body></html>
|
||||
@@ -0,0 +1,5 @@
|
||||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/asset_cache/asset_list.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/asset_cache/asset_list.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/asset_cache/asset_list.dm0"><img src="git.png" width="16" height="16" title="code/modules/asset_cache/asset_list.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/asset/simple.html">/datum/asset/simple</a></th><td>If you don't need anything complicated.</td></tr><tr><th><a href="datum/asset/simple/namespaced.html">/datum/asset/simple/namespaced</a></th><td>Namespace'ed assets (for static css and html files)
|
||||
When sent over a cdn transport, all assets in the same asset datum will exist in the same folder, as their plain names.
|
||||
Used to ensure css files can reference files by url() without having to generate the css at runtime, both the css file and the files it depends on must exist in the same namespace asset datum. (Also works for html)
|
||||
For example <code>blah.css</code> with asset <code>blah.png</code> will get loaded as <code>namespaces/a3d..14f/f12..d3c.css</code> and <code>namespaces/a3d..14f/blah.png</code>. allowing the css file to load <code>blah.png</code> by a relative url rather then compute the generated url with get_url_mappings().
|
||||
The namespace folder's name will change if any of the assets change. (excluding parent assets)</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/asset_cache/transports/asset_transport.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a> — <a href="code/modules/asset_cache/transports/asset_transport.html#define">Define Details</a></header><main><h1>code/modules/asset_cache/transports/asset_transport.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/asset_cache/transports/asset_transport.dm0"><img src="git.png" width="16" height="16" title="code/modules/asset_cache/transports/asset_transport.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/asset_cache/transports/asset_transport.html#define/ASSET_CACHE_TELL_CLIENT_AMOUNT">ASSET_CACHE_TELL_CLIENT_AMOUNT</a></th><td>When sending mutiple assets, how many before we give the client a quaint little sending resources message</td></tr><tr><th><a href="datum/asset_transport.html">/datum/asset_transport</a></th><td>Base browse_rsc asset transport</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/ASSET_CACHE_TELL_CLIENT_AMOUNT"><aside class="declaration">#define </aside>ASSET_CACHE_TELL_CLIENT_AMOUNT <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/asset_cache/transports/asset_transport.dm#L2"><img src="git.png" width="16" height="16" title="code/modules/asset_cache/transports/asset_transport.dm 2"></a></h3><p>When sending mutiple assets, how many before we give the client a quaint little sending resources message</p></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/asset_cache/transports/webroot_transport.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/asset_cache/transports/webroot_transport.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/asset_cache/transports/webroot_transport.dm0"><img src="git.png" width="16" height="16" title="code/modules/asset_cache/transports/webroot_transport.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/asset_transport/webroot.html">/datum/asset_transport/webroot</a></th><td>CDN Webroot asset transport.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/atmospherics/gasmixtures/gas_mixture.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/atmospherics/gasmixtures/gas_mixture.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/atmospherics/gasmixtures/gas_mixture.dm0"><img src="git.png" width="16" height="16" title="code/modules/atmospherics/gasmixtures/gas_mixture.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/proc/<a href="global.html#proc/release_gas_to">release_gas_to</a></th><td>Releases gas from src to output air. This means that it can not transfer air to gas mixture with higher pressure.
|
||||
a global proc due to rustmos</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/atmospherics/multiz.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/atmospherics/multiz.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/atmospherics/multiz.dm0"><img src="git.png" width="16" height="16" title="code/modules/atmospherics/multiz.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="obj/machinery/atmospherics/pipe/simple/multiz.html">/obj/machinery/atmospherics/pipe/simple/multiz</a></th><td>This is an atmospherics pipe which can relay air up/down a deck.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/awaymissions/corpse.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/awaymissions/corpse.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/awaymissions/corpse.dm0"><img src="git.png" width="16" height="16" title="code/modules/awaymissions/corpse.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/effect/mob_spawn.html">effect/mob_spawn</a>/human/corpse/assistant</th><td>Civilians</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/effect/mob_spawn.html">effect/mob_spawn</a>/human/bridgeofficer</th><td>Officers+Nanotrasen Security</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/effect/mob_spawn.html">effect/mob_spawn</a>/human/skeleton</th><td>Spooky Undead</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/awaymissions/gateway.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/awaymissions/gateway.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/awaymissions/gateway.dm0"><img src="git.png" width="16" height="16" title="code/modules/awaymissions/gateway.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="datum/gateway_destination.html">/datum/gateway_destination</a></th><td>Corresponds to single entry in gateway control.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/awaymissions/mission_code/snowdin.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/awaymissions/mission_code/snowdin.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/awaymissions/mission_code/snowdin.dm0"><img src="git.png" width="16" height="16" title="code/modules/awaymissions/mission_code/snowdin.dm0"></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/paper.html">paper</a>/crumpled/ruins/snowdin/foreshadowing</th><td>papers</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/awaymissions/mission_code/wildwest.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/awaymissions/mission_code/wildwest.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/awaymissions/mission_code/wildwest.dm0"><img src="git.png" width="16" height="16" title="code/modules/awaymissions/mission_code/wildwest.dm0"></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/paper.html">paper</a>/fluff/awaymissions/wildwest/grinder</th><td>wildwest papers</td></tr><tr><th>/<a href="obj.html">obj</a>/effect/meatgrinder</th><td>Meatgrinder</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/balloon_alert/balloon_alert.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a> — <a href="code/modules/balloon_alert/balloon_alert.html#define">Define Details</a></header><main><h1>code/modules/balloon_alert/balloon_alert.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/balloon_alert/balloon_alert.dm0"><img src="git.png" width="16" height="16" title="code/modules/balloon_alert/balloon_alert.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="code/modules/balloon_alert/balloon_alert.html#define/BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULT">BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULT</a></th><td>The increase in duration per character in seconds</td></tr><tr><th><a href="code/modules/balloon_alert/balloon_alert.html#define/BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MIN">BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MIN</a></th><td>The amount of characters needed before this increase takes into effect</td></tr></table><h2 id="define">Define Details</h2><h3 id="define/BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MIN"><aside class="declaration">#define </aside>BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MIN <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/balloon_alert/balloon_alert.dm#L9"><img src="git.png" width="16" height="16" title="code/modules/balloon_alert/balloon_alert.dm 9"></a></h3><p>The amount of characters needed before this increase takes into effect</p><h3 id="define/BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULT"><aside class="declaration">#define </aside>BALLOON_TEXT_CHAR_LIFETIME_INCREASE_MULT <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/balloon_alert/balloon_alert.dm#L7"><img src="git.png" width="16" height="16" title="code/modules/balloon_alert/balloon_alert.dm 7"></a></h3><p>The increase in duration per character in seconds</p></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.0</a></footer></body></html>
|
||||
@@ -0,0 +1,204 @@
|
||||
<!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><base href="../../"><link rel="stylesheet" href="dmdoc.css"><title>code/modules/buildmode/README.md - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>Buildmode <aside>code/modules/buildmode/README.md</aside> <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/buildmode/README.md0"><img src="git.png" width="16" height="16" title="code/modules/buildmode/README.md0"></a></h1><table class="summary" cellspacing="0"><tr><td colspan="2"><h2 id="code-layout">Code layout</h2><h3 id="buildmode">Buildmode</h3>
|
||||
<p>Manager for buildmode modes. Contains logic to manage switching between each mode, and presenting a suitable user interface.</p>
|
||||
<h3 id="effects">Effects</h3>
|
||||
<p>Special graphics used by buildmode modes for user interface purposes.</p>
|
||||
<h3 id="buildmode-mode">Buildmode Mode</h3>
|
||||
<p>Implementer of buildmode behaviors.</p>
|
||||
<p>Existing varieties:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p>Basic</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Allows creation of simple structures consisting of floors, walls, windows, and airlocks.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Left click a turf</em>:</p>
|
||||
<p>"Upgrades" the turf based on the following rules below:</p>
|
||||
<ul>
|
||||
<li>Space -> Tiled floor</li>
|
||||
<li>Simulated floor -> Regular wall</li>
|
||||
<li>Wall -> Reinforced wall</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Right click a turf</em>:</p>
|
||||
<p>"Downgrades" the turf based on the following rules below:</p>
|
||||
<ul>
|
||||
<li>Reinforced wall -> Regular wall</li>
|
||||
<li>Wall -> Tiled floor</li>
|
||||
<li>Simulated floor -> Space</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Right click an object</em>:</p>
|
||||
<p>Deletes the clicked object.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Alt+Left click a location</em>:</p>
|
||||
<p>Places an airlock at the clicked location.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Ctrl+Left click a location</em>:</p>
|
||||
<p>Places a window at the clicked location.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>Advanced</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Creates an instance of a configurable atom path where you click.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Right click on the mode selector</em>:</p>
|
||||
<p>Choose a path to spawn.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Left click a location</em> (requires chosen path):</p>
|
||||
<p>Place an instance of the chosen path at the location.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Right click an object</em>:</p>
|
||||
<p>Delete the object.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>Fill</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Creates an instance of an atom path on every tile in a chosen region.</p>
|
||||
<p>With a special control input, instead deletes everything within the region.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Right click on the mode selector</em>:</p>
|
||||
<p>Choose a path to spawn.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Left click on a region</em> (requires chosen path):</p>
|
||||
<p>Fill the region with the chosen path.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Alt+Left click on a region</em>:</p>
|
||||
<p>Deletes everything within the region.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Right click during region selection</em>:</p>
|
||||
<p>Cancel region selection.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>Copy</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Take an existing object in the world, and place duplicates with identical attributes where you click.</p>
|
||||
<p>May not always work nicely - "deep" variables such as lists or datums may malfunction.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Right click an existing object</em>:</p>
|
||||
<p>Select the clicked object as a template.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Left click a location</em> (Requires a selected object as template):</p>
|
||||
<p>Place a duplicate of the template at the clicked location.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>Area Edit</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Modifies and creates areas.</p>
|
||||
<p>The active area will be highlighted in yellow.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Right click the mode selector</em>:</p>
|
||||
<p>Create a new area, and make it active.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Right click an existing area</em>:</p>
|
||||
<p>Make the clicked area active.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Left click a turf</em>:</p>
|
||||
<p>When an area is active, adds the turf to the active area.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>Var Edit</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Allows for setting and resetting variables of objects with a click.</p>
|
||||
<p>If the object does not have the var, will do nothing and print a warning message.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Right click the mode selector</em>:</p>
|
||||
<p>Choose which variable to set, and what to set it to.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Left click an atom</em>:</p>
|
||||
<p>Change the clicked atom's variables as configured.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Right click an atom</em>:</p>
|
||||
<p>Reset the targeted variable to its original value in the code.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>Map Generator</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Fills rectangular regions with algorithmically generated content. Right click during region selection to cancel.</p>
|
||||
<p>See the <code>procedural_mapping</code> module for the generators themselves.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Right-click on the mode selector</em>:</p>
|
||||
<p>Select a map generator from all the generators present in the codebase.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Left click two corners of an area</em>:</p>
|
||||
<p>Use the generator to populate the region.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Right click during region selection</em>:</p>
|
||||
<p>Cancel region selection.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>Throwing</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Select an object with left click, and right click to throw it towards where you clicked.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Left click on a movable atom</em>:</p>
|
||||
<p>Select the atom for throwing.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Right click on a location</em>:</p>
|
||||
<p>Throw the selected atom towards that location.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
<li>
|
||||
<p>Boom</p>
|
||||
<p><strong>Description</strong>:</p>
|
||||
<p>Make explosions where you click.</p>
|
||||
<p><strong>Controls</strong>:</p>
|
||||
<ul>
|
||||
<li>
|
||||
<p><em>Right click the mode selector</em>:</p>
|
||||
<p>Configure the explosion size.</p>
|
||||
</li>
|
||||
<li>
|
||||
<p><em>Left click a location</em>:</p>
|
||||
<p>Cause an explosion where you clicked.</p>
|
||||
</li>
|
||||
</ul>
|
||||
</li>
|
||||
</ul></td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/armory.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/armory.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/armory.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/armory.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/security/armory</th><td>Armory</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/costumes_toys.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/costumes_toys.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/costumes_toys.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/costumes_toys.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/costumes_toys</th><td>Toys</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/costumes_toys/formalwear</th><td>Costumes</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/emergency.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/emergency.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/emergency.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/emergency.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/emergency</th><td>Emergency</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/engine.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/engine.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/engine.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/engine.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/engine</th><td>Engine Construction</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/engineering.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/engineering.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/engineering.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/engineering.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/engineering</th><td>Engineering</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/livestock.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/livestock.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/livestock.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/livestock.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/critter</th><td>Livestock</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/materials.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/materials.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/materials.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/materials.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/materials</th><td>Canisters & Materials</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/materials/cardboard50</th><td>Materials</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/materials/bz</th><td>Canisters</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/materials/fueltank</th><td>Tanks</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/medical.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/medical.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/medical.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/medical.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/medical</th><td>Medical</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/medical/bodybags</th><td>Equipment</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/medical/sprays</th><td>Medical Kits</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/medical/virus</th><td>Virology</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/misc.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/misc.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/misc.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/misc.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/misc</th><td>Miscellaneous</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/misc/anvil</th><td>Paperwork and Writing Supplies</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/misc/coloredsheets</th><td>Entertainment</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/misc/candles</th><td>Misc Supplies</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/misc/carpet</th><td>Misc + Decor</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/misc/lewd</th><td>Lewd Supplies</td></tr><tr><th><a href="datum/supply_pack/misc/syndicate.html">/datum/supply_pack/misc/syndicate</a></th><td>Special supply crate that generates random syndicate gear up to a determined TC value</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/organic.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/organic.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/organic.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/organic.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/organic</th><td>Organic</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/organic/combomeal2</th><td>Meals</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/organic/food</th><td>Raw Ingredients</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/organic/hydroponics/beekeeping_suits</th><td>Hydroponics</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/organic/party</th><td>Misc</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/science.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/science.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/science.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/science.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/science</th><td>Science</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/science/raw_flux_anomaly</th><td>RAW ANOMALY CORES</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/security.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/security.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/security.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/security.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/security</th><td>Security</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/service.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/service.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/service.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/service.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/service</th><td>Service</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/service/wrapping_paper</th><td>Cargo</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/service/buildabar</th><td>Chef, Botanist, Bartender</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/service/advlighting</th><td>Janitor</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/cargo/packs/vending.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/cargo/packs/vending.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/cargo/packs/vending.dm0"><img src="git.png" width="16" height="16" title="code/modules/cargo/packs/vending.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/supply_pack/vending</th><td>Vending</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/vending/bartending</th><td>Service, Medical, Sec</td></tr><tr><th>/<a href="datum.html">datum</a>/supply_pack/vending/wardrobes/autodrobe</th><td>Wardrobe Vendors</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/clothing/masks/boxing.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/clothing/masks/boxing.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/clothing/masks/boxing.dm0"><img src="git.png" width="16" height="16" title="code/modules/clothing/masks/boxing.dm0"></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/clothing.html">clothing</a>/<a href="obj/item/clothing/mask.html">mask</a>/luchador</th><td>This makes it so that your name shows up as unknown when wearing the mask.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/clothing/masks/miscellaneous.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/clothing/masks/miscellaneous.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/clothing/masks/miscellaneous.dm0"><img src="git.png" width="16" height="16" title="code/modules/clothing/masks/miscellaneous.dm0"></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/clothing.html">clothing</a>/<a href="obj/item/clothing/mask.html">mask</a>/frog</th><td>frog mask - reeee!!</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/clothing/spacesuits/hardsuit.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/clothing/spacesuits/hardsuit.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/clothing/spacesuits/hardsuit.dm0"><img src="git.png" width="16" height="16" title="code/modules/clothing/spacesuits/hardsuit.dm0"></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/clothing.html">clothing</a>/suit/space/hardsuit/shielded</th><td>SHIELDED</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/clothing.html">clothing</a>/suit/space/hardsuit/shielded/ctf</th><td>Capture the Flag</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/clothing.html">clothing</a>/suit/space/hardsuit/shielded/syndi</th><td>Syndicate Version</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/clothing.html">clothing</a>/suit/space/hardsuit/shielded/swat</th><td>SWAT version</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/events/holiday/halloween.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/events/holiday/halloween.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/events/holiday/halloween.dm0"><img src="git.png" width="16" height="16" title="code/modules/events/holiday/halloween.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/round_event_control.html">round_event_control</a>/spooky</th><td>You will appear adjacent to the beacon</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/events/stray_cargo.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/events/stray_cargo.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/events/stray_cargo.dm0"><img src="git.png" width="16" height="16" title="code/modules/events/stray_cargo.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/round_event_control.html">round_event_control</a>/stray_cargo</th><td>Spawns a cargo pod containing a random cargo supply pack on a random area of the station</td></tr><tr><th><a href="datum/round_event/stray_cargo.html">/datum/round_event/stray_cargo</a></th><td>Spawns a cargo pod containing a random cargo supply pack on a random area of the station</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/round_event_control.html">round_event_control</a>/stray_cargo/syndicate</th><td>A rare variant that drops a crate containing syndicate uplink items</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/drinks/drinks.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/drinks/drinks.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/drinks/drinks.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/drinks/drinks.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/drinks</th><td>Drinks.</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/drinks/trophy</th><td>Drinks. END</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/drinks/coffee</th><td>Drinks</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/drinks/shaker</th><td>drinkingglass and shaker</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/drinks/soda_cans</th><td>soda_cans</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/drinks/drinks/bottle.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/drinks/drinks/bottle.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/drinks/drinks/bottle.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/drinks/drinks/bottle.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/drinks/bottle</th><td>Alchohol bottles! -Agouri</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/drinks/bottle/orangejuice</th><td>JUICES AND STUFF</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/drinks/bottle/molotov</th><td>MOLOTOV</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="obj/item/reagent_containers/food.html">/obj/item/reagent_containers/food</a></th><td>Food.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/condiment.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/condiment.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/condiment.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/condiment.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/condiment</th><td>Condiments</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/customizables.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/customizables.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/customizables.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/customizables.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/customizable/burger</th><td>Customizable Food Types</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="obj/item/reagent_containers/food/snacks.html">/obj/item/reagent_containers/food/snacks</a></th><td></td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/store</th><td>All the food items that can store an item inside itself, like bread or cake.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks/dough.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks/dough.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks/dough.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks/dough.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/dough</th><td>Dough Ingredients</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks/meat.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks/meat.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks/meat.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks/meat.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/meat/slab/human</th><td>HUMAN MEATS</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/meat/slab/synthmeat</th><td>OTHER MEATS</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/meat/steak</th><td>MEAT STEAKS</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/meat/rawcutlet</th><td>MEAT CUTLETS</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks_egg.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks_egg.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks_egg.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks_egg.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/chocolateegg</th><td>EGGS</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks_meat.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks_meat.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks_meat.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks_meat.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/cubancarp</th><td>FISH</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/tofu</th><td>MEATS AND ALIKE</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/cube</th><td>Cubes</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks_other.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks_other.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks_other.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks_other.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/store/cheesewheel</th><td>OTHER</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks_pastry.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks_pastry.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks_pastry.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks_pastry.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th><a href="obj/item/reagent_containers/food/snacks/donut.html">/obj/item/reagent_containers/food/snacks/donut</a></th><td>DONUTS</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/<a href="obj/item/reagent_containers/food/snacks/donut.html">donut</a>/jelly</th><td>JELLY DONUTS</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/<a href="obj/item/reagent_containers/food/snacks/donut.html">donut</a>/jelly/slimejelly</th><td>SLIME DONUTS</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/muffin</th><td>MUFFINS</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/waffles</th><td>WAFFLES</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/cookie</th><td>OTHER</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks_pizza.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks_pizza.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks_pizza.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks_pizza.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/pizza</th><td>PIZZA</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks_salad.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks_salad.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks_salad.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks_salad.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/salad</th><td>SALAD</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks_sushi.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks_sushi.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks_sushi.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks_sushi.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/sushi_rice</th><td>Sushi Components</td></tr><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/<a href="obj/item/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/sushie_basic</th><td>Sushi</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/food/snacks_vend.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/food/snacks_vend.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/food/snacks_vend.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/food/snacks_vend.dm0"></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/reagent_containers/food.html">reagent_containers/food</a>/<a href="obj/item/reagent_containers/food/snacks.html">snacks</a>/candy</th><td>SNACKS FROM VENDING MACHINES</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/drinks_recipes.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/drinks_recipes.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/drinks_recipes.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/drinks_recipes.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/chemical_reaction.html">chemical_reaction</a>/goldschlager</th><td>COCKTAILS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/chemical_reaction.html">chemical_reaction</a>/sbiten</th><td>DRINKS THAT REQUIRED IMPROVED SPRITES BELOW:: -Agouri</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/chemical_reaction.html">chemical_reaction</a>/mush</th><td>Tea Base Drinks</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/chemical_reaction.html">chemical_reaction</a>/coldscales</th><td>Race Base Drinks</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/food_mixtures.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/food_mixtures.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/food_mixtures.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/food_mixtures.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/chemical_reaction.html">chemical_reaction</a>/tofu</th><td>FOOD MIXTURES</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_bread.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_bread.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/bread</th><td>BREAD</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/butteredtoast</th><td>TOAST</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/baguette</th><td>MISC</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_burger.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_burger.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/burger</th><td>STANDARD BURGS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/appendixburger</th><td>EXOTIC</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/clownburger</th><td>MYSTICAL</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/redburger</th><td>COLORED BURGERS</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_cake.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_cake.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/applecake</th><td>FRUIT CAKE</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/birthdaycake</th><td>FANCY</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/holycake</th><td>SPECIAL</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_donut.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_donut.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_donut.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_donut.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/donut</th><td>DONUTS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/donut/jelly/apple</th><td>JELLY DONUTS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/donut/slimejelly/apple</th><td>SLIME DONUTS</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_egg.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_egg.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/friedegg</th><td>EGG RECIPE's</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_frozen.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_frozen.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/apple_sc</th><td>SNOW CONES</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/mime_sc</th><td>I don't like seperating the clown and mime.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_meat.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_meat.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/humankebab</th><td>KEBABS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/spidereggsham</th><td>MR SPIDER</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/meatslab</th><td>MISC RECIPE's</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_mexican.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_mexican.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/burrito</th><td>"MEXICAN"</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_misc.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_misc.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/chawanmushi</th><td>Eastern Foods</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/dough</th><td>MISC</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_pastry.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_pastry.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/muffin</th><td>MUFFINS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/cherrycupcake</th><td>CUPCAKES</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/raisincookie</th><td>COOKIES</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/waffles</th><td>WAFFLES AND PANCAKES</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/donkpocket</th><td>DONKPOCCKETS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/piedough</th><td>OTHER</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_pies_sweets.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_pies_sweets.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_pies_sweets.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_pies_sweets.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/applepie</th><td>FRUITS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/amanitapie</th><td>OTHER PIES</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/goldenappletart</th><td>TARTS</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/candiedapple</th><td>SWEETS</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_pizza.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_pizza.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/dankpizza</th><td>PIZZA!!!</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/pineapplepizza/anomaly</th><td>Special Pizzas</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_salad.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_salad.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/aesirsalad</th><td>SALADS</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_sandwich.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/sandwich</th><td>SANDWICHES</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_seafood.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_seafood.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_seafood.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_seafood.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/sushi_rice</th><td>Sushi Components</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/sashimi</th><td>Sushi</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/tuna_can</th><td>FISH</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_soup.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_soup.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/amanitajelly</th><td>SOUP</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm0"><img src="git.png" width="16" height="16" title="code/modules/food_and_drinks/recipes/tablecraft/recipes_spaghetti.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/copypasta</th><td>SPAGHETTI</td></tr><tr><th>/<a href="datum.html">datum</a>/<a href="datum/crafting_recipe.html">crafting_recipe</a>/food/beefnoodle</th><td>NOODLES</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.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/games/unum.dm - /tg/ Station 13</title></head><body><header><a href="index.html">/tg/ Station 13</a> - <a href="index.html#modules">Modules</a> - <a href="index.html#types">Types</a></header><main><h1>code/modules/games/unum.dm <a href="https://github.com/evilew/GS13-Citadel/blob/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e/code/modules/games/unum.dm0"><img src="git.png" width="16" height="16" title="code/modules/games/unum.dm0"></a></h1><table class="summary" cellspacing="0"><tr><th>/<a href="obj.html">obj</a>/<a href="obj/item.html">item</a>/toy/cards/deck/unum</th><td>A deck of unum cards. Classic.</td></tr></table></main><footer>tgstation.dme <a href="https://github.com/evilew/GS13-Citadel/tree/e8e0068531dd988f9e65b33ae7866d4fbf1fdd9e">e8e0068</a> (master) — <a href="https://github.com/SpaceManiac/SpacemanDMM/blob/master/crates/dmdoc/README.md">dmdoc 1.9.0</a></footer></body></html>
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user