Smilegate RPG LostArk's advanced honing simulator and package efficiency calculator
You can use simulator here.
Honing Simulator |
---|
- Experience all the features of the real game.
- Calculates honing material consumption in
Gold
. - Check your honing history.
You can use calculator here.
Package efficiency calculator |
---|
- Show efficient packages at a glance.
- Calculate the value of the package in
Gold
. - Select target materials to calculate efficiency.
- Clone this repository
git clone https://github.com/shyuuuuni/lostark-tips.git
- Install dependencies
node.js >= 18.17.0
npm >= 8.0.0
npm install
- Run dev server
npm run dev
You can use the project at http://localhost:3000/simulator
- You can add package's item in
/src/app/(defaultLayout)/calculator/package/_lib/packedItem.ts
. For example,
|
- And then, you can pack your packed items in
/src/app/(defaultLayout)/calculator/package/_lib/package.ts
with.addPackageItem()
. For example,
const PC방_전용_돌파_파편_패키지_230913 = new Package.Builder(
'1',
'[PC방 전용] 돌파&파편 패키지',
33000,
'로얄 크리스탈',
)
.setImage(shopIconPcImg)
.setSaleDate({ startDate: '2023-09-13', endDate: null })
.setRepurchaseCycle('월간')
.setPurchaseLimit(3)
.addPackageItem(최상급_돌파석_선택_상자, 30) // you can add like it.
.addPackageItem(최상급_융화_재료_선택_상자, 5)
.addPackageItem(명예의_파편_주머니_대, 200)
.build();
Tip: You can manage which packages are displayed on the screen by modifying the elements of the packages array.
export const packages: Package[] = [
PC방_전용_돌파_파편_패키지_230913,
주간_성장_재료_패키지_240228,
상급_보조_융화_패키지_240131,
월간_올인원_최상급_성장_패키지_230412,
];