mirror of
https://github.com/MadeBaruna/paimon-moe.git
synced 2025-01-06 02:35:25 +01:00
Update weapon
This commit is contained in:
parent
06c531dc77
commit
31e59c71bc
2 changed files with 60 additions and 3 deletions
|
@ -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,
|
||||
},
|
||||
],
|
||||
},
|
||||
};
|
||||
|
|
|
@ -3,7 +3,6 @@
|
|||
export async function preload() {
|
||||
return { data };
|
||||
}
|
||||
|
||||
</script>
|
||||
|
||||
<script>
|
||||
|
@ -34,7 +33,7 @@
|
|||
function process() {
|
||||
const _weapons = [];
|
||||
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({
|
||||
id,
|
||||
|
@ -101,7 +100,6 @@
|
|||
changeLocale(val);
|
||||
});
|
||||
});
|
||||
|
||||
</script>
|
||||
|
||||
<svelte:head>
|
||||
|
|
Loading…
Reference in a new issue