@0xward/nullstate-logic 1.0.0

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 (3) hide show
  1. package/README.md +4 -0
  2. package/index.js +2 -0
  3. package/package.json +16 -0
package/README.md ADDED
@@ -0,0 +1,4 @@
1
+ # nullstate-logic
2
+ Action execution, respawn, and random raid boss mechanics for NullState.
3
+
4
+ Published by 0xward via Termux.
package/index.js ADDED
@@ -0,0 +1,2 @@
1
+ function rollAction() { return { actionType: Math.floor(Math.random() * 5) + 1, dmg: Math.floor(Math.random() * 121) + 20 }; }
2
+ module.exports = { rollAction };
package/package.json ADDED
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "@0xward/nullstate-logic",
3
+ "version": "1.0.0",
4
+ "description": "Action execution, respawn, and random raid boss mechanics for NullState.",
5
+ "main": "index.js",
6
+ "keywords": [
7
+ "0xward",
8
+ "web3",
9
+ "utility"
10
+ ],
11
+ "author": "0xward",
12
+ "license": "MIT",
13
+ "publishConfig": {
14
+ "access": "public"
15
+ }
16
+ }