feat: add subweapon support, weapon type logic, and compact item card UI options

This commit is contained in:
2026-04-28 01:39:39 +09:00
parent 0420e23939
commit 0e0748540e
46 changed files with 1795 additions and 577 deletions
+22 -12
View File
@@ -9,7 +9,8 @@
"price": 30,
"image": "assets/images/items/gladius.png",
"rarity": "normal",
"tier": "tier1"
"tier": "tier1",
"weaponType": "oneHanded"
},
{
"id": "flail",
@@ -21,7 +22,8 @@
"price": 45,
"image": "assets/images/items/flail.png",
"rarity": "magic",
"tier": "tier1"
"tier": "tier1",
"weaponType": "oneHanded"
},
{
"id": "trident",
@@ -33,7 +35,8 @@
"price": 70,
"image": "assets/images/items/trident.png",
"rarity": "normal",
"tier": "tier2"
"tier": "tier2",
"weaponType": "twoHanded"
},
{
"id": "scimitar",
@@ -45,7 +48,8 @@
"price": 90,
"image": "assets/images/items/scimitar.png",
"rarity": "magic",
"tier": "tier2"
"tier": "tier2",
"weaponType": "oneHanded"
},
{
"id": "war_axe",
@@ -56,7 +60,8 @@
"price": 120,
"image": "assets/images/items/war_axe.png",
"rarity": "magic",
"tier": "tier2"
"tier": "tier2",
"weaponType": "twoHanded"
},
{
"id": "war_hammer",
@@ -74,7 +79,8 @@
}
],
"rarity": "rare",
"tier": "tier2"
"tier": "tier2",
"weaponType": "twoHanded"
},
{
"id": "barbed_net",
@@ -89,11 +95,12 @@
"type": "bleed",
"probability": 100,
"duration": 3,
"value": 30
"value": 5
}
],
"rarity": "rare",
"tier": "tier1"
"tier": "tier1",
"weaponType": "oneHanded"
},
{
"id": "steel_greatsword",
@@ -104,7 +111,8 @@
"price": 180,
"image": "assets/images/items/steel_greatsword.png",
"rarity": "magic",
"tier": "tier3"
"tier": "tier3",
"weaponType": "twoHanded"
},
{
"id": "hooked_spear",
@@ -122,7 +130,8 @@
}
],
"rarity": "rare",
"tier": "tier3"
"tier": "tier3",
"weaponType": "twoHanded"
},
{
"id": "executioners_axe",
@@ -140,7 +149,8 @@
}
],
"rarity": "legendary",
"tier": "tier3"
"tier": "tier3",
"weaponType": "twoHanded"
}
],
"armors": [
@@ -373,4 +383,4 @@
"image": "assets/images/items/potion.png"
}
]
}
}
Binary file not shown.

Before

Width:  |  Height:  |  Size: 420 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 93 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 345 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 933 B