@rpgm-tools/neo-angband-mod-sdk 1.1.0 → 1.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/standards.d.ts +1 -1
- package/dist/standards.js +1 -1
- package/docs/AUTHORING.md +695 -0
- package/docs/MOD_COMPATIBILITY.md +477 -0
- package/docs/MOD_LIFECYCLE.md +785 -0
- package/docs/MOD_REACH.md +1538 -0
- package/docs/MOD_SEAMS.md +1024 -0
- package/docs/PLUGINS.md +1567 -0
- package/docs/README.md +457 -0
- package/docs/REGION_INPUT.md +867 -0
- package/docs/REQUIREMENTS.md +102 -0
- package/docs/tutorials/01-tweak-a-value.md +134 -0
- package/docs/tutorials/02-add-an-item.md +234 -0
- package/docs/tutorials/03-add-a-monster.md +210 -0
- package/docs/tutorials/04-change-a-spell.md +124 -0
- package/docs/tutorials/05-hook-behaviour.md +138 -0
- package/docs/tutorials/06-add-an-option.md +140 -0
- package/docs/tutorials/07-add-an-artifact.md +227 -0
- package/docs/tutorials/README.md +183 -0
- package/package.json +5 -2
- package/src/standards.ts +1 -1
package/README.md
CHANGED
|
@@ -63,7 +63,7 @@ reads them.
|
|
|
63
63
|
- [docs/MODS.md](https://github.com/neostryder/neo-angband/blob/master/docs/MODS.md): the full modding guide
|
|
64
64
|
- First-party mods: [qol](https://github.com/neostryder/neo-angband-mod-qol),
|
|
65
65
|
[bug-fixes](https://github.com/neostryder/neo-angband-mod-bug-fixes),
|
|
66
|
-
[
|
|
66
|
+
[linoleum](https://github.com/neostryder/neo-angband-mod-linoleum),
|
|
67
67
|
[borg](https://github.com/neostryder/neo-angband-mod-borg)
|
|
68
68
|
|
|
69
69
|
## Versioning
|
package/dist/standards.d.ts
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* enforced it, because validateManifest never sees whether plugin.js is there.
|
|
25
25
|
* - a mod whose payload is committed .zip archives must DECLARE them, or the
|
|
26
26
|
* installer stores the zips unopened and the mod is present and dead. Found on
|
|
27
|
-
*
|
|
27
|
+
* Linoleum by a live canary, after it had shipped that way.
|
|
28
28
|
*
|
|
29
29
|
* A rule is either `required` - the mod cannot work, and an install is refused - or
|
|
30
30
|
* `recommended`, which is advice and never blocks anything. Nothing in between: a
|
package/dist/standards.js
CHANGED
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
* enforced it, because validateManifest never sees whether plugin.js is there.
|
|
25
25
|
* - a mod whose payload is committed .zip archives must DECLARE them, or the
|
|
26
26
|
* installer stores the zips unopened and the mod is present and dead. Found on
|
|
27
|
-
*
|
|
27
|
+
* Linoleum by a live canary, after it had shipped that way.
|
|
28
28
|
*
|
|
29
29
|
* A rule is either `required` - the mod cannot work, and an install is refused - or
|
|
30
30
|
* `recommended`, which is advice and never blocks anything. Nothing in between: a
|