Update weapon

This commit is contained in:
Made Baruna 2021-06-29 01:15:51 +07:00
parent 06c531dc77
commit 31e59c71bc
No known key found for this signature in database
GPG key ID: 5AA5DA16AA5DCEAD
2 changed files with 60 additions and 3 deletions

View file

@ -6551,4 +6551,63 @@ export const weaponList = {
}, },
], ],
}, },
'freedom-sworn': {
name: 'Freedom-Sworn',
id: 'freedom-sworn',
rarity: 5,
atk: 46,
secondary: 'Elemental Mastery',
type: weapons.sword,
source: 'wish',
ascension: [
{
items: [
{ item: itemList.fetters_of_the_dandelion_gladiator, amount: 5 },
{ item: itemList.chaos_device, amount: 5 },
{ item: itemList.divining_scroll, amount: 3 },
],
mora: 10000,
},
{
items: [
{ item: itemList.chains_of_the_dandelion_gladiator, amount: 5 },
{ item: itemList.chaos_device, amount: 18 },
{ item: itemList.divining_scroll, amount: 12 },
],
mora: 20000,
},
{
items: [
{ item: itemList.chains_of_the_dandelion_gladiator, amount: 9 },
{ item: itemList.chaos_circuit, amount: 9 },
{ item: itemList.sealed_scroll, amount: 9 },
],
mora: 30000,
},
{
items: [
{ item: itemList.shackles_of_the_dandelion_gladiator, amount: 5 },
{ item: itemList.chaos_circuit, amount: 18 },
{ item: itemList.sealed_scroll, amount: 14 },
],
mora: 45000,
},
{
items: [
{ item: itemList.shackles_of_the_dandelion_gladiator, amount: 9 },
{ item: itemList.chaos_core, amount: 14 },
{ item: itemList.forbidden_curse_scroll, amount: 9 },
],
mora: 55000,
},
{
items: [
{ item: itemList.dream_of_the_dandelion_gladiator, amount: 6 },
{ item: itemList.chaos_core, amount: 27 },
{ item: itemList.forbidden_curse_scroll, amount: 18 },
],
mora: 65000,
},
],
},
}; };

View file

@ -3,7 +3,6 @@
export async function preload() { export async function preload() {
return { data }; return { data };
} }
</script> </script>
<script> <script>
@ -34,7 +33,7 @@
function process() { function process() {
const _weapons = []; const _weapons = [];
for (const [id, weapon] of Object.entries(data)) { for (const [id, weapon] of Object.entries(data)) {
if (['amber_bead', 'ebony_bow', 'quartz', 'the_flagstaff', 'freedom-sworn'].includes(id)) continue; if (['amber_bead', 'ebony_bow', 'quartz', 'the_flagstaff'].includes(id)) continue;
_weapons.push({ _weapons.push({
id, id,
@ -101,7 +100,6 @@
changeLocale(val); changeLocale(val);
}); });
}); });
</script> </script>
<svelte:head> <svelte:head>