forked from seiyria/gameicons-font
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.icon-map.js
53 lines (45 loc) · 1.28 KB
/
.icon-map.js
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
module.exports = {
// global icons
"health-normal": "global-hp",
"drop": "global-mp",
"crown-coin": "global-money",
// item icons
"round-star": "item-tier-1",
"seven-pointed-star": "item-tier-2",
"stars-stack": "item-tier-3",
// gear icons
"back-forth": "gear-swap",
// skill display
"target-dummy": "skill-target",
"sands-of-time": "skill-cooldown",
// extra-icons
"crosshair": "extra-gps",
"crossed-swords": "extra-fight",
// menu icons
"inner-self": "menu-player",
"world": "menu-world",
"swap-bag": "menu-inventory",
"bowman": "menu-skills",
"juggler": "menu-traits",
"dark-squad": "menu-party",
"cog": "menu-options",
"entry-door": "menu-logout",
// inventory menu icons
"broadsword": "inventory-menu-weapon",
"armor-vest": "inventory-menu-armor",
"potion-ball": "inventory-menu-item",
// status effects
"health-increase": "status-regenerate",
"invisible": "status-stealth",
"blindfold": "status-blind",
"fire": "status-burn",
"frozen-orb": "status-freeze",
"electric": "status-shock",
"mace-head": "status-stun",
"targeting": "status-acc-plus",
"target-arrows": "status-dex-plus",
"clover-2": "status-luk-plus",
"magic-lamp": "status-mnt-plus",
"strong": "status-str-plus",
"nested-hearts": "status-vit-plus"
};