rpg-event-generator 1.2.0 → 1.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 +20 -8
  2. package/package.json +1 -5
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A powerful procedural event generation system for RPG games, capable of creating virtually infinite contextual events based on player state and game world.
4
4
 
5
+ > **Note:** This package was originally created for a personal RPG project and shared publicly because it might be useful for other game developers. The repository is private, so bug reports and maintenance issues cannot be submitted directly. Check npm regularly for updates, new features, or breaking changes.
6
+
5
7
  ## Installation
6
8
 
7
9
  ```bash
@@ -26,6 +28,24 @@ console.log(event.description); // Procedurally generated narrative
26
28
  console.log(event.choices); // Array of meaningful choices
27
29
  ```
28
30
 
31
+ ## Demo
32
+
33
+ Run the included `demo.js` file to see the RPG Event Generator in action:
34
+
35
+ ```bash
36
+ node demo.js
37
+ ```
38
+
39
+ This will demonstrate various features including event generation, chains, time progression, and customization options.
40
+
41
+ ## Maintenance & Updates
42
+
43
+ Since this is a personal project with a private repository:
44
+ - **Check npm regularly** for new versions and features
45
+ - **Monitor the changelog** in package updates for breaking changes
46
+ - **Run the demo** to explore new functionality
47
+ - **No direct bug reports** or feature requests can be accepted
48
+
29
49
  ## Features
30
50
 
31
51
  - **Infinite Event Generation**: Custom Markov chains create unique, contextual events
@@ -703,14 +723,6 @@ npm test
703
723
  - **Desertion Temptation**: Military loyalty crises
704
724
  - **Mercenary Contract**: Dangerous employment opportunities
705
725
 
706
- ## 🤝 Contributing
707
-
708
- 1. Fork the repository
709
- 2. Create a feature branch (`git checkout -b feature/amazing-feature`)
710
- 3. Commit changes (`git commit -m 'Add amazing feature'`)
711
- 4. Push to branch (`git push origin feature/amazing-feature`)
712
- 5. Open a Pull Request
713
-
714
726
  ## 📄 License
715
727
 
716
728
  MIT License - see [LICENSE](LICENSE) file for details.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rpg-event-generator",
3
- "version": "1.2.0",
3
+ "version": "1.2.2",
4
4
  "description": "Procedural RPG event generation system for games",
5
5
  "main": "dist/index.js",
6
6
  "files": [
@@ -61,10 +61,6 @@
61
61
  "^.+\\.(js|jsx)$": "babel-jest"
62
62
  }
63
63
  },
64
- "repository": {
65
- "type": "git",
66
- "url": "https://github.com/decept1kon/rpg-event-generator.git"
67
- },
68
64
  "engines": {
69
65
  "node": ">=14.0.0"
70
66
  }