Documentation fixups.
This commit is contained in:
parent
f3c66cb240
commit
9cea72bc2d
15
README.md
15
README.md
@ -15,7 +15,7 @@ TIMES as many layers of duct tape as the UAC's competing equivalent,
|
|||||||
forming a sturdier, tougher seal than any so-called "actual
|
forming a sturdier, tougher seal than any so-called "actual
|
||||||
well-funded machine shop" could ever hope to achieve.
|
well-funded machine shop" could ever hope to achieve.
|
||||||
|
|
||||||
## Kiri's Gretchen Counter
|
## Gretchen Counter
|
||||||
|
|
||||||
![Gretchen Counter pickup sprite](sprites/gretchencounter/kgcpa0.png)
|
![Gretchen Counter pickup sprite](sprites/gretchencounter/kgcpa0.png)
|
||||||
|
|
||||||
@ -53,7 +53,7 @@ The battery may be accessed (**Unload**/**Reload**) by removing the
|
|||||||
rear battery bay panel. *May exhibit erratic behavior if used with a
|
rear battery bay panel. *May exhibit erratic behavior if used with a
|
||||||
low battery.*
|
low battery.*
|
||||||
|
|
||||||
## Kiri's Wiring Bypass Kit
|
## Wiring Bypass Kit
|
||||||
|
|
||||||
![Wiring Bypass Kit pickup sprite](sprites/jumpercables/jmpka0.png)
|
![Wiring Bypass Kit pickup sprite](sprites/jumpercables/jmpka0.png)
|
||||||
|
|
||||||
@ -118,5 +118,16 @@ Appendix D is unavailable in the Kiri's Discount Wiring Bypass Kit
|
|||||||
manual. To obtain a copy of appendix D, please purchase a subscription
|
manual. To obtain a copy of appendix D, please purchase a subscription
|
||||||
to Kiri's Discount Wiring Bypass Kit: Professional Edition.
|
to Kiri's Discount Wiring Bypass Kit: Professional Edition.
|
||||||
|
|
||||||
|
## Cursed Cacodemon Plushie
|
||||||
|
|
||||||
|
![Caco plushie pickup sprite](sprites/cacoplush/cacoplushie_pickup.png)
|
||||||
|
|
||||||
|
Some random junk we found in the bin behind SnekTech HQ. Give it to
|
||||||
|
your kid or something as a gift.
|
||||||
|
|
||||||
|
Caution: May bite.
|
||||||
|
|
||||||
|
### How to use
|
||||||
|
|
||||||
|
Loadout code: kac
|
||||||
|
|
||||||
|
9
TODO.md
9
TODO.md
@ -8,9 +8,12 @@
|
|||||||
- Caco plush
|
- Caco plush
|
||||||
- ~~Caco plush spawnflags~~
|
- ~~Caco plush spawnflags~~
|
||||||
- ~~Add caco plush to menu~~
|
- ~~Add caco plush to menu~~
|
||||||
- Caco plush documentation
|
- ~~Caco plush documentation~~
|
||||||
- Brightmaps for caco plush
|
- ~~Brightmaps for caco plush~~
|
||||||
- Set actual chance for caco plush spawn
|
- ~~Set actual chance for caco plush spawn~~
|
||||||
|
- Caco plush sprite scaling
|
||||||
|
|
||||||
|
- Headers and comment formatting pass
|
||||||
|
|
||||||
- Organize source_data
|
- Organize source_data
|
||||||
|
|
||||||
|
@ -1,3 +1,16 @@
|
|||||||
|
// ----------------------------------------------------------------------
|
||||||
|
// Gretchen Counter
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// This object clearly looks like it was recycled from a very old
|
||||||
|
// Geiger counter.
|
||||||
|
//
|
||||||
|
// Smells kind of like rotting meat.
|
||||||
|
//
|
||||||
|
// Try not to think about it.
|
||||||
|
//
|
||||||
|
|
||||||
|
|
||||||
#include "zscript/snektech.zs"
|
#include "zscript/snektech.zs"
|
||||||
|
|
||||||
const HDLD_KIRI_GRETCHENCOUNTER = "kgc";
|
const HDLD_KIRI_GRETCHENCOUNTER = "kgc";
|
||||||
|
@ -1,3 +1,14 @@
|
|||||||
|
// ----------------------------------------------------------------------
|
||||||
|
// Wiring Bypass Kit
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// This is just a pile of electronics maintenance equipment. The usual
|
||||||
|
// stuff is here, like electrical tape, wire cutters, etc.
|
||||||
|
//
|
||||||
|
// There's also a meter that looks like it was made out of some beat
|
||||||
|
// up piece of equipment, and held together with duct tape.
|
||||||
|
//
|
||||||
|
|
||||||
const HDLD_KIRI_JUMPERCABLES = "jmp";
|
const HDLD_KIRI_JUMPERCABLES = "jmp";
|
||||||
|
|
||||||
const jumperCablesRaycastRange = 48; // Same range as the DERP.
|
const jumperCablesRaycastRange = 48; // Same range as the DERP.
|
||||||
|
@ -1,3 +1,10 @@
|
|||||||
|
// ----------------------------------------------------------------------
|
||||||
|
// Snektech
|
||||||
|
// ----------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Spawn flags for SnekTech items handled here.
|
||||||
|
//
|
||||||
|
|
||||||
enum SnekTechSpawnFlags
|
enum SnekTechSpawnFlags
|
||||||
{
|
{
|
||||||
SNEKTECH_GRETCHENCOUNTER = 0,
|
SNEKTECH_GRETCHENCOUNTER = 0,
|
||||||
@ -98,8 +105,7 @@ class SnekTechEventHandler : EventHandler
|
|||||||
DoSnekTechReplacement(
|
DoSnekTechReplacement(
|
||||||
SNEKTECH_CACOPLUSHIE,
|
SNEKTECH_CACOPLUSHIE,
|
||||||
"BlurSphere", "KiriCacodemonPlushie",
|
"BlurSphere", "KiriCacodemonPlushie",
|
||||||
// FIXME: Chance.
|
6, e);
|
||||||
256, e);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user