mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-16 12:51:30 +00:00
11 lines
418 B
JavaScript
11 lines
418 B
JavaScript
import Profile from '../components/Profile.js'
|
|
import Calc from '../components/Calc.js'
|
|
import { Character } from '../components/models.js'
|
|
import Miao from '../components/profile-data/miao.js'
|
|
|
|
export async function calcDmg (inputData, enemyLv = 86) {
|
|
let profile = Miao.getAvatarDetail(inputData)
|
|
console.log(profile)
|
|
let char = Character.get(profile)
|
|
return await Calc.calcData({ profile, char, enemyLv })
|
|
} |