Skip to content

Commit

Permalink
feat: 增加两个设置项,用于骰点上限和 COC 制卡上限 (#46)
Browse files Browse the repository at this point in the history
* feat: 增加 `COC制卡次数上限` 和 `骰点轮数上限`

* choir: Empty push to get workflow run

* Revert "choir: Empty push to get workflow run"

This reverts commit fb5a9db.
  • Loading branch information
oissevalt authored Sep 25, 2023
1 parent e4cb3f4 commit 7ee23bd
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions src/components/misc/PageMiscSettings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -354,6 +354,30 @@
<el-input v-model="config.defaultCocRuleIndex" clearable style="width: 14rem;" />
</el-form-item>

<el-form-item>
<template #label>
<div>
<span>COC制卡次数上限</span>
<el-tooltip raw-content content=".coc n中n的最大值,1-12之间,默认5">
<el-icon><question-filled /></el-icon>
</el-tooltip>
</div>
</template>
<el-input v-model="config.maxCocCardGen" clearable style="width: 14rem;" />
</el-form-item>

<el-form-item>
<template #label>
<div>
<span>骰点轮数上限</span>
<el-tooltip raw-content content=".r n#中n的最大值,1-25之间,默认12">
<el-icon><question-filled /></el-icon>
</el-tooltip>
</div>
</template>
<el-input v-model="config.maxExecuteTime" clearable style="width: 14rem;" />
</el-form-item>

<h2>海豹</h2>
<el-form-item>
<template #label>
Expand Down

0 comments on commit 7ee23bd

Please sign in to comment.