mirror of
https://github.com/yoimiya-kokomi/miao-plugin.git
synced 2024-11-22 06:58:24 +00:00
处理下#前缀的星铁排行 (#715)
This commit is contained in:
parent
1efa688b5b
commit
b78ef70e83
@ -3,7 +3,7 @@ import { Data, Common, Format, Cfg } from '#miao'
|
|||||||
import { Button, Character, ProfileRank, ProfileDmg, Player } from '#miao.models'
|
import { Button, Character, ProfileRank, ProfileDmg, Player } from '#miao.models'
|
||||||
import lodash from 'lodash'
|
import lodash from 'lodash'
|
||||||
|
|
||||||
export async function groupRank (e) {
|
export async function groupRank(e) {
|
||||||
const groupRank = Common.cfg('groupRank')
|
const groupRank = Common.cfg('groupRank')
|
||||||
let msg = e.original_msg || e.msg
|
let msg = e.original_msg || e.msg
|
||||||
let type = ''
|
let type = ''
|
||||||
@ -20,8 +20,8 @@ export async function groupRank (e) {
|
|||||||
}
|
}
|
||||||
let mode = /(分|圣遗物|遗器|评分|ACE)/.test(msg) ? 'mark' : 'dmg'
|
let mode = /(分|圣遗物|遗器|评分|ACE)/.test(msg) ? 'mark' : 'dmg'
|
||||||
mode = /(词条)/.test(msg) ? 'valid' : mode
|
mode = /(词条)/.test(msg) ? 'valid' : mode
|
||||||
mode = /(双爆)/.test(msg) ? 'crit' : mode
|
mode = /(双爆|双暴)/.test(msg) ? 'crit' : mode
|
||||||
let name = msg.replace(/(#|星铁|最强|最高分|第一|词条|双爆|极限|最高|最多|最牛|圣遗物|评分|群内|群|排名|排行|面板|面版|详情|榜)/g, '')
|
let name = msg.replace(/(#|星铁|最强|最高分|第一|词条|双爆|双暴|极限|最高|最多|最牛|圣遗物|评分|群内|群|排名|排行|面板|面版|详情|榜)/g, '')
|
||||||
let game = e.isSr ? 'sr' : 'gs'
|
let game = e.isSr ? 'sr' : 'gs'
|
||||||
let char = Character.get(name, game)
|
let char = Character.get(name, game)
|
||||||
if (!char) {
|
if (!char) {
|
||||||
@ -29,6 +29,8 @@ export async function groupRank (e) {
|
|||||||
if (name || type !== 'list') {
|
if (name || type !== 'list') {
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
|
} else {
|
||||||
|
e.isSr = char.game === 'sr'
|
||||||
}
|
}
|
||||||
// 对鲸泽佬的极限角色文件增加支持
|
// 对鲸泽佬的极限角色文件增加支持
|
||||||
if (type === 'super') {
|
if (type === 'super') {
|
||||||
@ -90,7 +92,7 @@ export async function groupRank (e) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function resetRank (e) {
|
export async function resetRank(e) {
|
||||||
let groupId = e.group_id
|
let groupId = e.group_id
|
||||||
if (!groupId) {
|
if (!groupId) {
|
||||||
return true
|
return true
|
||||||
@ -114,7 +116,7 @@ export async function resetRank (e) {
|
|||||||
charName = char.name
|
charName = char.name
|
||||||
}
|
}
|
||||||
await ProfileRank.resetRank(groupId, charId, game)
|
await ProfileRank.resetRank(groupId, charId, game)
|
||||||
e.reply([`本群${charName}排名已重置...`, new Button(e).profile(char)])
|
e.reply([`本群${charName}排名已重置...`, name ? new Button(e).profile(char) : ''])
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -122,7 +124,7 @@ export async function resetRank (e) {
|
|||||||
* @param e
|
* @param e
|
||||||
* @returns {Promise<boolean>}
|
* @returns {Promise<boolean>}
|
||||||
*/
|
*/
|
||||||
export async function refreshRank (e) {
|
export async function refreshRank(e) {
|
||||||
let groupId = e.group_id || ''
|
let groupId = e.group_id || ''
|
||||||
if (!groupId) {
|
if (!groupId) {
|
||||||
return true
|
return true
|
||||||
@ -157,7 +159,7 @@ export async function refreshRank (e) {
|
|||||||
e.reply(`本群排名已刷新,共刷新${count}个UID数据...`)
|
e.reply(`本群排名已刷新,共刷新${count}个UID数据...`)
|
||||||
}
|
}
|
||||||
|
|
||||||
export async function manageRank (e) {
|
export async function manageRank(e) {
|
||||||
let groupId = e.group_id
|
let groupId = e.group_id
|
||||||
if (!groupId) {
|
if (!groupId) {
|
||||||
return true
|
return true
|
||||||
@ -175,7 +177,7 @@ export async function manageRank (e) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
async function renderCharRankList ({ e, uids, char, mode, groupId }) {
|
async function renderCharRankList({ e, uids, char, mode, groupId }) {
|
||||||
let list = []
|
let list = []
|
||||||
for (let ds of uids) {
|
for (let ds of uids) {
|
||||||
let uid = ds.uid || ds.value
|
let uid = ds.uid || ds.value
|
||||||
|
Loading…
Reference in New Issue
Block a user