diff --git a/Changelog b/Changelog index 64ff17d..6b22c2f 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,9 @@ +2022-10-09 Kiri Jolly + + * README.md: Added. + + * caco_summon.zs: Minor cleanup. + 2022-10-09 Kiri Jolly * *: Initial release. diff --git a/README.md b/README.md new file mode 100644 index 0000000..c016f12 --- /dev/null +++ b/README.md @@ -0,0 +1,71 @@ +# Kiri's Cursed Cacodemon Plushie + +An evil Cacodemon Plushie. Squeeze it and you might make a new friend! + +## Requirements + +- [Hideous Destructor](https://codeberg.org/mc776/hideousdestructor) ([forum thread](https://forum.zdoom.org/viewtopic.php?t=12973&)) + +- [GZDoom](https://zdoom.org) + +- Confirmed to work with both the original Doom IWADs (DOOM.WAD, + DOOM2.WAD, TNT.WAD, PLUTONIA.WAD) or Freedom. + +## Installation + +You have a few options for installation, depending on your level of +comfort with Git, and what you intend to do with the mod. + +### Option 1: Simply download the mod as a zip. + +To get the most recent version, download from this URL: + + [https://git.intoxicoding.com/ExpiredPopsicle/HDCursedCacoPlushie/archive/main.zip](https://git.intoxicoding.com/ExpiredPopsicle/HDCursedCacoPlushie/archive/main.zip) + +Stick it in with your mods, and add this line to your GZDoom command line: + + `-file HDCursedCacoPlushie-main.zip` + +Alternatively, add it to the mods list of your favorite launcher. + +Run GZDoom. + +### Option 2: Clone the Git repository (requires knowledge of Git). + +Run the following command: + + `git clone https://git.intoxicoding.com/ExpiredPopsicle/HDCursedCacoPlushie.git` + +Stick it in with your mods, and add this line to your GZDoom command line: + + `-file HDCursedCacoPlushie` + +Run GZDoom. + +## Use + +Loadout code is "kac". Add it to a loadout to start with it. + +To give yourself the item in the console: + + `hd_give kac` + +To spawn the monster, press `Fire` with the item selected. + +To recall the monster once spawned, press `Fire` again. + +To heal the monster, press `Reload`. This will expend blood packs. If +blood packs are not present, the plushie will bite you and drink your +blood, leaving you with an open wound and minor blood loss. + +## Credits + +Created by Kiri Jolly: + Twitch: https://twitch.tv/ExpiredPopsicle + Twitter: https://twitter.com/ExpiredPopsicle + Mastodon: https://mastodon.social/ExpiredPopsicle + Web: https://expiredpopsicle.com + Email: mailto:expiredpopsicle@gmail.com + + + diff --git a/caco_summon.zs b/caco_summon.zs index ffe80f5..34d92cc 100644 --- a/caco_summon.zs +++ b/caco_summon.zs @@ -8,7 +8,6 @@ const HDLD_KIRI_CACOPLUSHIE = "kac"; const KIRI_CACOPLUSHIE_FAINTED_MONSTER_COOLDOWN = 60; -const KIRI_CACOPLUSHIE_MAX_HEALTH = 420; const KIRI_CACOPLUSHIE_CLASS = "Trilobite"; // For testing out shield mechanics, if we ever open this up to other @@ -756,8 +755,7 @@ class KiriCacodemonPlushie : HDWeapon { override String getHelpText() { - if(spawned_creature || spawned_spawnball) - { + if(spawned_creature || spawned_spawnball) { return WEPHELP_FIRE.." Return "..getMonsterName().." to the plushie.\n"; }