update docs for dwarfvet

develop
myk002 2022-07-24 23:24:52 -07:00
parent 595fb221b8
commit 32e2ac2103
No known key found for this signature in database
GPG Key ID: 8A39CA0FA0C16E78
2 changed files with 19 additions and 21 deletions

@ -1,19 +1,23 @@
dwarfvet dwarfvet
======== ========
Enables Animal Caretaker functionality Tags:
:dfhack-keybind:`dwarfvet`
Always annoyed your dragons become useless after a minor injury? Well, with :index:`Allows animals to be treated at animal hospitals.
dwarfvet, your animals become first rate members of your fort. It can also <dwarfvet; Allows animals to be treated at animal hospitals.>`
be used to train medical skills.
Animals need to be treated in an animal hospital, which is simply a hospital Annoyed your dragons become useless after a minor injury? Well, with dwarfvet,
that is also an animal training zone. The console will print out a list on game injured animals will be treated at an animal hospital, which is simply a hospital
load, and whenever one is added or removed. Dwarfs must have the Animal Caretaker that is also an animal training zone. Dwarfs with the Animal Caretaker labor
labor to treat animals. Normal medical skills are used (and no experience is given enabled will come to the hospital to treat animals. Normal medical skills are
to the Animal Caretaker skill). used (and trained), but no experience is given to the Animal Caretaker skill
itself.
Options: Usage:
:enable: Enables Animal Caretakers to treat and manage animals ``enable dwarfvet``
:disable: Turns off the plguin Enables the plugin.
:report: Reports all zones that the game considers animal hospitals ``dwarfvet report``
Reports all zones that the game considers animal hospitals.
``dwarfvet report-usage``
Reports on animals currently being treated.

@ -370,14 +370,8 @@ DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <Plug
{ {
commands.push_back(PluginCommand( commands.push_back(PluginCommand(
"dwarfvet", "dwarfvet",
"Allows animals to be cared for in animal hospitals (activity zones that are animal training + hospital combined).", "Allows animals to be treated at animal hospitals",
dwarfvet, dwarfvet));
false, //allow non-interactive use
"dwarfvet enable\n"
" enables animals to use animal hospitals (requires dwarf with Animal Caretaker labor enabled)\n"
"dwarfvet report\n"
" displays all zones dwarfvet considers animal hospitals and their current location on the map\n"
));
return CR_OK; return CR_OK;
} }