@ai-rpg-engine/starter-fantasy 1.0.0 → 1.0.1
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 +55 -0
- package/package.json +35 -35
package/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
<p align="center">
|
|
2
|
+
<img src="https://raw.githubusercontent.com/mcp-tool-shop-org/brand/main/logos/ai-rpg-engine/readme.png" width="400" alt="AI RPG Engine">
|
|
3
|
+
</p>
|
|
4
|
+
|
|
5
|
+
<p align="center">
|
|
6
|
+
<a href="https://github.com/mcp-tool-shop-org/ai-rpg-engine/actions/workflows/ci.yml"><img src="https://github.com/mcp-tool-shop-org/ai-rpg-engine/actions/workflows/ci.yml/badge.svg" alt="CI"></a>
|
|
7
|
+
<a href="https://github.com/mcp-tool-shop-org/ai-rpg-engine/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
|
|
8
|
+
<a href="https://mcp-tool-shop-org.github.io/ai-rpg-engine/"><img src="https://img.shields.io/badge/Landing_Page-live-blue" alt="Landing Page"></a>
|
|
9
|
+
</p>
|
|
10
|
+
|
|
11
|
+
# @ai-rpg-engine/starter-fantasy
|
|
12
|
+
|
|
13
|
+
**The Chapel Threshold** — a dark fantasy starter world for AI RPG Engine.
|
|
14
|
+
|
|
15
|
+
## Install
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
npm install @ai-rpg-engine/starter-fantasy
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
## What's Inside
|
|
22
|
+
|
|
23
|
+
A complete content pack featuring:
|
|
24
|
+
|
|
25
|
+
- **The Chapel** — a ruined chapel with interconnected rooms and hidden passages
|
|
26
|
+
- **NPCs** — guards, ghouls, and spirits with distinct AI cognition profiles
|
|
27
|
+
- **Items** — weapons, armor, potions, and quest items
|
|
28
|
+
- **Dialogue** — branching conversations with condition-gated options
|
|
29
|
+
- **Combat encounters** — enemies with varied tactics driven by the cognition system
|
|
30
|
+
|
|
31
|
+
## Usage
|
|
32
|
+
|
|
33
|
+
```typescript
|
|
34
|
+
import { Engine } from '@ai-rpg-engine/core';
|
|
35
|
+
import { combatCore, dialogueCore, cognitionCore } from '@ai-rpg-engine/modules';
|
|
36
|
+
import { chapelThreshold } from '@ai-rpg-engine/starter-fantasy';
|
|
37
|
+
|
|
38
|
+
const engine = new Engine({
|
|
39
|
+
manifest: chapelThreshold.manifest,
|
|
40
|
+
seed: 42,
|
|
41
|
+
modules: [combatCore(), dialogueCore(), cognitionCore()],
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
engine.loadContentPack(chapelThreshold);
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## Documentation
|
|
48
|
+
|
|
49
|
+
- [The Chapel Threshold (Ch. 20)](https://mcp-tool-shop-org.github.io/ai-rpg-engine/handbook/20-chapel-threshold/)
|
|
50
|
+
- [Handbook](https://mcp-tool-shop-org.github.io/ai-rpg-engine/handbook/)
|
|
51
|
+
- [GitHub](https://github.com/mcp-tool-shop-org/ai-rpg-engine)
|
|
52
|
+
|
|
53
|
+
---
|
|
54
|
+
|
|
55
|
+
Built by <a href="https://mcp-tool-shop.github.io/">MCP Tool Shop</a>
|
package/package.json
CHANGED
|
@@ -1,35 +1,35 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@ai-rpg-engine/starter-fantasy",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "AI RPG Engine fantasy starter: The Chapel Threshold",
|
|
5
|
-
"type": "module",
|
|
6
|
-
"main": "./dist/index.js",
|
|
7
|
-
"types": "./dist/index.d.ts",
|
|
8
|
-
"exports": {
|
|
9
|
-
".": {
|
|
10
|
-
"types": "./dist/index.d.ts",
|
|
11
|
-
"import": "./dist/index.js"
|
|
12
|
-
}
|
|
13
|
-
},
|
|
14
|
-
"files": ["dist", "content"],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"build": "tsc",
|
|
17
|
-
"test": "vitest run"
|
|
18
|
-
},
|
|
19
|
-
"dependencies": {
|
|
20
|
-
"@ai-rpg-engine/core": "*",
|
|
21
|
-
"@ai-rpg-engine/content-schema": "*",
|
|
22
|
-
"@ai-rpg-engine/modules": "*"
|
|
23
|
-
},
|
|
24
|
-
"license": "MIT",
|
|
25
|
-
"author": "mcp-tool-shop",
|
|
26
|
-
"homepage": "https://mcp-tool-shop-org.github.io/ai-rpg-engine/",
|
|
27
|
-
"repository": {
|
|
28
|
-
"type": "git",
|
|
29
|
-
"url": "https://github.com/mcp-tool-shop-org/ai-rpg-engine.git",
|
|
30
|
-
"directory": "packages/starter-fantasy"
|
|
31
|
-
},
|
|
32
|
-
"engines": {
|
|
33
|
-
"node": ">=20"
|
|
34
|
-
}
|
|
35
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@ai-rpg-engine/starter-fantasy",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "AI RPG Engine fantasy starter: The Chapel Threshold",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./dist/index.d.ts",
|
|
11
|
+
"import": "./dist/index.js"
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
"files": ["dist", "content"],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsc",
|
|
17
|
+
"test": "vitest run"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@ai-rpg-engine/core": "*",
|
|
21
|
+
"@ai-rpg-engine/content-schema": "*",
|
|
22
|
+
"@ai-rpg-engine/modules": "*"
|
|
23
|
+
},
|
|
24
|
+
"license": "MIT",
|
|
25
|
+
"author": "mcp-tool-shop",
|
|
26
|
+
"homepage": "https://mcp-tool-shop-org.github.io/ai-rpg-engine/",
|
|
27
|
+
"repository": {
|
|
28
|
+
"type": "git",
|
|
29
|
+
"url": "https://github.com/mcp-tool-shop-org/ai-rpg-engine.git",
|
|
30
|
+
"directory": "packages/starter-fantasy"
|
|
31
|
+
},
|
|
32
|
+
"engines": {
|
|
33
|
+
"node": ">=20"
|
|
34
|
+
}
|
|
35
|
+
}
|