-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtokens.ts
More file actions
60 lines (59 loc) · 1.71 KB
/
tokens.ts
File metadata and controls
60 lines (59 loc) · 1.71 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
export type Token = {
id: number;
name: string;
description: string;
isBaseToken?: boolean;
requiredToForgeTokenIds?: number[];
};
export const tokensData: Token[] = [
// ---- BASE TOKENS ----
{
id: 0,
description:
"A raw, sturdy material found deep within mines, essential for crafting durable tools and weapons.",
name: "Iron Ore",
isBaseToken: true,
requiredToForgeTokenIds: [3, 5, 6],
},
{
id: 1,
description:
"A magical energy harvested from powerful sources or rare creatures, used in spellcasting and enchanted items.",
name: "Elemental Essence",
isBaseToken: true,
requiredToForgeTokenIds: [3, 4, 6],
},
{
id: 2,
description:
"A refined mineral known for its sharp edges and conductive properties, often used in magical crafting4",
name: "Crystal Shards",
isBaseToken: true,
requiredToForgeTokenIds: [4, 5, 6],
},
// ---- FORGED TOKENS ----
{
id: 3,
description:
"A tough alloy forged by combining iron ore and elemental essence, creating a stronger, magically enhanced metal.",
name: "Steel Ingot (Iron Ore + Elemental Essence)",
},
{
id: 4,
description:
"A glowing crystal forged by combining essence and shards, storing magical energy for spells or weapons.",
name: "Enchanted Crystal (Elemental Essence + Crystal Shards)",
},
{
id: 5,
description:
"A strong, metallic-infused crystal forged by combining iron ore and crystal shards, used for crafting armor.",
name: "Reinforced Crystal (Iron Ore + Crystal Shards)",
},
{
id: 6,
description:
"A rare, powerful artifact crafted by combining all three base materials, used in legendary weapons and technology.",
name: "Legendary Core (Iron Ore + Elemental Essence + Crystal Shards)",
},
];