Add item icons
|
Before Width: | Height: | Size: 492 B |
1
assets/icons/icon_ammunition.svg
Normal file
|
After Width: | Height: | Size: 6.2 KiB |
|
Before Width: | Height: | Size: 514 B |
1
assets/icons/icon_armor.svg
Normal file
|
After Width: | Height: | Size: 7.3 KiB |
|
Before Width: | Height: | Size: 526 B |
1
assets/icons/icon_building.svg
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
1
assets/icons/icon_class.svg
Normal file
|
After Width: | Height: | Size: 6.5 KiB |
1
assets/icons/icon_equipment.svg
Normal file
|
After Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 468 B |
|
Before Width: | Height: | Size: 562 B |
1
assets/icons/icon_magicitem.svg
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
1
assets/icons/icon_miracle.svg
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
|
Before Width: | Height: | Size: 538 B |
1
assets/icons/icon_npcattack.svg
Normal file
|
After Width: | Height: | Size: 6.0 KiB |
1
assets/icons/icon_oath.svg
Normal file
|
After Width: | Height: | Size: 7.2 KiB |
|
Before Width: | Height: | Size: 526 B |
1
assets/icons/icon_skillnpc.svg
Normal file
|
After Width: | Height: | Size: 5.6 KiB |
1
assets/icons/icon_spell.svg
Normal file
|
After Width: | Height: | Size: 7.0 KiB |
|
Before Width: | Height: | Size: 492 B |
1
assets/icons/icon_trait.svg
Normal file
|
After Width: | Height: | Size: 5.5 KiB |
1
assets/icons/icon_weapon.svg
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
|
Before Width: | Height: | Size: 564 B |
@@ -1,13 +1,17 @@
|
|||||||
const defaultItemImg = {
|
const defaultItemImg = {
|
||||||
weapon: "systems/fvtt-oath-hammer/assets/icons/icon_weapon.webp",
|
weapon: "systems/fvtt-oath-hammer/assets/icons/icon_weapon.svg",
|
||||||
armor: "systems/fvtt-oath-hammer/assets/icons/icon_armor.webp",
|
armor: "systems/fvtt-oath-hammer/assets/icons/icon_armor.svg",
|
||||||
ammunition: "systems/fvtt-oath-hammer/assets/icons/icon_ammunition.webp",
|
ammunition: "systems/fvtt-oath-hammer/assets/icons/icon_ammunition.svg",
|
||||||
equipment: "systems/fvtt-oath-hammer/assets/icons/icon_equipment.webp",
|
equipment: "systems/fvtt-oath-hammer/assets/icons/icon_equipment.svg",
|
||||||
spell: "systems/fvtt-oath-hammer/assets/icons/icon_spell.webp",
|
spell: "systems/fvtt-oath-hammer/assets/icons/icon_spell.svg",
|
||||||
miracle: "systems/fvtt-oath-hammer/assets/icons/icon_miracle.webp",
|
miracle: "systems/fvtt-oath-hammer/assets/icons/icon_miracle.svg",
|
||||||
"magic-item": "systems/fvtt-oath-hammer/assets/icons/icon_magic_item.webp",
|
"magic-item": "systems/fvtt-oath-hammer/assets/icons/icon_magic_item.svg",
|
||||||
trait: "systems/fvtt-oath-hammer/assets/icons/icon_ability.webp",
|
trait: "systems/fvtt-oath-hammer/assets/icons/icon_ability.svg",
|
||||||
oath: "systems/fvtt-oath-hammer/assets/icons/icon_oath.webp"
|
oath: "systems/fvtt-oath-hammer/assets/icons/icon_oath.svg",
|
||||||
|
building: "systems/fvtt-oath-hammer/assets/icons/icon_building.svg",
|
||||||
|
class: "systems/fvtt-oath-hammer/assets/icons/icon_class.svg",
|
||||||
|
skillnpc: "systems/fvtt-oath-hammer/assets/icons/icon_skillnpc.svg",
|
||||||
|
npcattack: "systems/fvtt-oath-hammer/assets/icons/icon_npcattack.svg",
|
||||||
}
|
}
|
||||||
|
|
||||||
export default class OathHammerItem extends Item {
|
export default class OathHammerItem extends Item {
|
||||||
|
|||||||