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
|
||||
well-funded machine shop" could ever hope to achieve.
|
||||
|
||||
## Kiri's Gretchen Counter
|
||||
## Gretchen Counter
|
||||
|
||||
![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
|
||||
low battery.*
|
||||
|
||||
## Kiri's Wiring Bypass Kit
|
||||
## Wiring Bypass Kit
|
||||
|
||||
![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
|
||||
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 spawnflags~~
|
||||
- ~~Add caco plush to menu~~
|
||||
- Caco plush documentation
|
||||
- Brightmaps for caco plush
|
||||
- Set actual chance for caco plush spawn
|
||||
- ~~Caco plush documentation~~
|
||||
- ~~Brightmaps for caco plush~~
|
||||
- ~~Set actual chance for caco plush spawn~~
|
||||
- Caco plush sprite scaling
|
||||
|
||||
- Headers and comment formatting pass
|
||||
|
||||
- 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"
|
||||
|
||||
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 jumperCablesRaycastRange = 48; // Same range as the DERP.
|
||||
|
@ -1,3 +1,10 @@
|
||||
// ----------------------------------------------------------------------
|
||||
// Snektech
|
||||
// ----------------------------------------------------------------------
|
||||
//
|
||||
// Spawn flags for SnekTech items handled here.
|
||||
//
|
||||
|
||||
enum SnekTechSpawnFlags
|
||||
{
|
||||
SNEKTECH_GRETCHENCOUNTER = 0,
|
||||
@ -98,8 +105,7 @@ class SnekTechEventHandler : EventHandler
|
||||
DoSnekTechReplacement(
|
||||
SNEKTECH_CACOPLUSHIE,
|
||||
"BlurSphere", "KiriCacodemonPlushie",
|
||||
// FIXME: Chance.
|
||||
256, e);
|
||||
6, e);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user