@ai-rpg-engine/starter-zombie 2.2.1 → 2.2.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.
Files changed (2) hide show
  1. package/README.md +11 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,7 @@
1
- <p align="center">
2
- <a href="README.ja.md">日本語</a> | <a href="README.zh.md">中文</a> | <a href="README.es.md">Español</a> | <a href="README.fr.md">Français</a> | <a href="README.hi.md">हिन्दी</a> | <a href="README.it.md">Italiano</a> | <a href="README.pt-BR.md">Português (BR)</a>
3
- </p>
4
-
1
+ <p align="center">
2
+ <a href="README.ja.md">日本語</a> | <a href="README.zh.md">中文</a> | <a href="README.es.md">Español</a> | <a href="README.fr.md">Français</a> | <a href="README.hi.md">हिन्दी</a> | <a href="README.it.md">Italiano</a> | <a href="README.pt-BR.md">Português (BR)</a>
3
+ </p>
4
+
5
5
  <p align="center">
6
6
  <img src="https://raw.githubusercontent.com/mcp-tool-shop-org/brand/main/logos/ai-rpg-engine/readme.png" width="400" alt="AI RPG Engine">
7
7
  </p>
@@ -14,6 +14,8 @@
14
14
 
15
15
  # @ai-rpg-engine/starter-zombie
16
16
 
17
+ > **Composition Example** — This starter demonstrates how to wire the engine for zombie survival. It is an example to learn from, not a template to copy. See the [Composition Guide](../../docs/handbook/57-composition-guide.md) to build your own game.
18
+
17
19
  **Ashfall Dead** — a zombie survival starter world for AI RPG Engine.
18
20
 
19
21
  ## Install
@@ -22,7 +24,7 @@
22
24
  npm install @ai-rpg-engine/starter-zombie
23
25
  ```
24
26
 
25
- ## What You'll Learn
27
+ ## Patterns Demonstrated
26
28
 
27
29
  This starter demonstrates the full engine stack through a survival scenario:
28
30
 
@@ -63,6 +65,10 @@ const engine = createGame(42);
63
65
  import { manifest, zombieMinimalRuleset, survivalTree } from '@ai-rpg-engine/starter-zombie';
64
66
  ```
65
67
 
68
+ ## What to Borrow
69
+
70
+ Consequence-only resource pattern — infection accumulates from events and combat but cannot be voluntarily spent. Study how a resource that only grows creates escalating tension and forces players toward the item economy (antibiotics) as the only relief valve.
71
+
66
72
  ## Documentation
67
73
 
68
74
  - [Handbook](https://mcp-tool-shop-org.github.io/ai-rpg-engine/handbook/)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ai-rpg-engine/starter-zombie",
3
- "version": "2.2.1",
3
+ "version": "2.2.2",
4
4
  "description": "AI RPG Engine zombie survival starter: Ashfall Dead",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",