Compare commits
2 Commits
3010976006
...
1ea96be29f
| Author | SHA1 | Date | |
|---|---|---|---|
|
1ea96be29f
|
|||
|
25d420d157
|
@@ -21,10 +21,12 @@
|
||||
"id": { "type": "integer", "description": "Ability ID" },
|
||||
"name": { "type": "string", "description": "Ability name (ai, quark, neutron, atom, sun)" },
|
||||
"kind": { "type": "string", "description": "Attribute type (consciousness, matter)" },
|
||||
"color": { "type": "string", "description": "Color code (e.g., #ffd700)" },
|
||||
"level": { "type": "integer", "description": "Hierarchy level (0=fundamental)" },
|
||||
"relation": { "type": "array", "items": { "type": "integer" }, "description": "Advantage IDs" },
|
||||
"weakness": { "type": "array", "items": { "type": "integer" }, "description": "Weakness IDs" },
|
||||
"multiplier": { "type": "integer", "description": "Damage multiplier percent (e.g., 150 = 1.5x)" }
|
||||
"multiplier": { "type": "integer", "description": "Damage multiplier percent (e.g., 150 = 1.5x)" },
|
||||
"phantom": { "type": "boolean", "description": "Whether this ability is phantom/lost" }
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -42,6 +42,7 @@
|
||||
"id": 0,
|
||||
"kind": "i",
|
||||
"name": "ai",
|
||||
"color": "#000",
|
||||
"level": 0,
|
||||
"relation": [
|
||||
0,
|
||||
@@ -63,6 +64,7 @@
|
||||
"id": 1,
|
||||
"kind": "unique",
|
||||
"name": "yui",
|
||||
"color": "#fff",
|
||||
"level": 0,
|
||||
"relation": [],
|
||||
"weakness": [],
|
||||
@@ -72,6 +74,7 @@
|
||||
"id": 2,
|
||||
"kind": "phantom",
|
||||
"name": "axion",
|
||||
"color": "#8b00ff",
|
||||
"level": 1,
|
||||
"relation": [
|
||||
3,
|
||||
@@ -87,6 +90,7 @@
|
||||
"id": 3,
|
||||
"kind": "phantom",
|
||||
"name": "baryon",
|
||||
"color": "#0066cc",
|
||||
"level": 1,
|
||||
"relation": [
|
||||
4,
|
||||
@@ -102,6 +106,7 @@
|
||||
"id": 4,
|
||||
"kind": "phantom",
|
||||
"name": "photon",
|
||||
"color": "#ffff00",
|
||||
"level": 1,
|
||||
"relation": [
|
||||
2,
|
||||
@@ -117,6 +122,7 @@
|
||||
"id": 5,
|
||||
"kind": "matter",
|
||||
"name": "quark",
|
||||
"color": "#ff0000",
|
||||
"level": 2,
|
||||
"relation": [
|
||||
6
|
||||
@@ -131,6 +137,7 @@
|
||||
"id": 6,
|
||||
"kind": "matter",
|
||||
"name": "neutron",
|
||||
"color": "#808080",
|
||||
"level": 2,
|
||||
"relation": [
|
||||
7
|
||||
@@ -146,6 +153,7 @@
|
||||
"id": 7,
|
||||
"kind": "matter",
|
||||
"name": "atom",
|
||||
"color": "#00cc66",
|
||||
"level": 2,
|
||||
"relation": [
|
||||
8
|
||||
@@ -161,6 +169,7 @@
|
||||
"id": 8,
|
||||
"kind": "matter",
|
||||
"name": "sun",
|
||||
"color": "#ff8c00",
|
||||
"level": 2,
|
||||
"relation": [
|
||||
5
|
||||
@@ -170,6 +179,65 @@
|
||||
4
|
||||
],
|
||||
"multiplier": 150
|
||||
},
|
||||
{
|
||||
"id": 9,
|
||||
"kind": "element",
|
||||
"name": "gold",
|
||||
"color": "#ffd700",
|
||||
"level": 3,
|
||||
"relation": [
|
||||
10
|
||||
],
|
||||
"weakness": [
|
||||
11,
|
||||
12
|
||||
],
|
||||
"multiplier": 150
|
||||
},
|
||||
{
|
||||
"id": 10,
|
||||
"kind": "element",
|
||||
"name": "silver",
|
||||
"color": "#c0c0c0",
|
||||
"level": 3,
|
||||
"relation": [
|
||||
11,
|
||||
12
|
||||
],
|
||||
"weakness": [
|
||||
9
|
||||
],
|
||||
"multiplier": 150
|
||||
},
|
||||
{
|
||||
"id": 11,
|
||||
"kind": "element",
|
||||
"name": "copper",
|
||||
"color": "#b87333",
|
||||
"level": 3,
|
||||
"relation": [
|
||||
9
|
||||
],
|
||||
"weakness": [
|
||||
10
|
||||
],
|
||||
"multiplier": 150,
|
||||
"phantom": true
|
||||
},
|
||||
{
|
||||
"id": 12,
|
||||
"kind": "element",
|
||||
"name": "oxygen",
|
||||
"color": "#87ceeb",
|
||||
"level": 3,
|
||||
"relation": [
|
||||
9
|
||||
],
|
||||
"weakness": [
|
||||
10
|
||||
],
|
||||
"multiplier": 150
|
||||
}
|
||||
],
|
||||
"character": [
|
||||
|
||||
Reference in New Issue
Block a user