Skip to content

Commit

Permalink
Remove Unused Item
Browse files Browse the repository at this point in the history
  • Loading branch information
AguzzTN54 committed Oct 25, 2023
1 parent 1319a35 commit 4715c23
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 14 deletions.
6 changes: 0 additions & 6 deletions src/lib/data/weapons.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,6 @@
"l": 35
}
},
{
"name": "ballad-of-the-boundless-blue",
"rarity": 4,
"weaponType": "catalyst",
"limited": true
},
{
"name": "portable-power-saw",
"rarity": 4,
Expand Down
1 change: 0 additions & 1 deletion src/locales/items/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"amos-bow": "Amos' Bow",
"aqua-simulacra": "Aqua Simulacra",
"aquila-favonia": "Aquila Favonia",
"ballad-of-the-boundless-blue": "Ballad of the Boundless Blue",
"beacon-of-the-reed-sea": "Beacon of the Reed Sea",
"black-tassel": "Black Tassel",
"bloodtained-greatsword": "Bloodtained Greatsword",
Expand Down
1 change: 0 additions & 1 deletion src/locales/items/it-IT.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"amos-bow": "Arco di Amos",
"aqua-simulacra": "Aqua simulacra",
"aquila-favonia": "Aquila Favonia",
"ballad-of-the-boundless-blue": "Ballata del blu sempiterno",
"beacon-of-the-reed-sea": "Faro del Mare dei Giunchi",
"black-tassel": "Pennacchio nero",
"bloodtained-greatsword": "Spadone insanguinato",
Expand Down
1 change: 0 additions & 1 deletion src/locales/items/ja-JP.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"amos-bow": "アモスの弓",
"aqua-simulacra": "若水",
"aquila-favonia": "風鷹剣",
"ballad-of-the-boundless-blue": "果てなき紺碧の唄",
"beacon-of-the-reed-sea": "葦海の標",
"black-tassel": "黒纓槍",
"bloodtained-greatsword": "龍血を浴びた剣",
Expand Down
1 change: 0 additions & 1 deletion src/locales/items/pt-BR.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"amos-bow": "Arco de Amos",
"aqua-simulacra": "Aqua Simulacra",
"aquila-favonia": "Falcão",
"ballad-of-the-boundless-blue": "Canção do Vasto Azul",
"beacon-of-the-reed-sea": "Sinal dos Mares",
"black-tassel": "Borla Preta",
"bloodtained-greatsword": "Espadão Sangrento",
Expand Down
1 change: 0 additions & 1 deletion src/locales/items/ru-RU.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"amos-bow": "Лук Амоса",
"aqua-simulacra": "Аква симулякрум",
"aquila-favonia": "Меч Сокола",
"ballad-of-the-boundless-blue": "Песнь необъятной лазури",
"beacon-of-the-reed-sea": "Маяк тростникового моря",
"black-tassel": "Чёрная кисть",
"bloodtained-greatsword": "Меч драконьей крови",
Expand Down
1 change: 0 additions & 1 deletion src/locales/items/vi-VN.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"amos-bow": "Cung Amos",
"aqua-simulacra": "Nhược Thủy",
"aquila-favonia": "Phong Ưng Kiếm",
"ballad-of-the-boundless-blue": "Khúc Ca Xanh Bao La",
"beacon-of-the-reed-sea": "Hải Đăng Bờ Biển Lau",
"black-tassel": "Hắc Anh Thương",
"bloodtained-greatsword": "Kiếm Huyết Rồng",
Expand Down
1 change: 0 additions & 1 deletion src/locales/items/zh-CN.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
"amos-bow": "阿莫斯之弓",
"aqua-simulacra": "若水",
"aquila-favonia": "风鹰剑",
"ballad-of-the-boundless-blue": "无垠蔚蓝之歌",
"beacon-of-the-reed-sea": "苇海信标",
"black-tassel": "黑缨枪",
"bloodtained-greatsword": "沐浴龙血的剑",
Expand Down
2 changes: 1 addition & 1 deletion src/routes/_inventory/_inventory-detail.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
const dt = await HistoryManager.getByName(name);
// If no data in IDB
if (dt.length < 1 || !!dt[0]) {
if (dt.length < 1 || !dt[0]) {
const result = getCharDetails(name);
result.qty = owneditem.get(name)?.qty || 0;
return result;
Expand Down
Binary file not shown.

0 comments on commit 4715c23

Please sign in to comment.