BOSS 战筹码卡牌效果描述调整
Before Width: | Height: | Size: 148 KiB After Width: | Height: | Size: 148 KiB |
Before Width: | Height: | Size: 140 KiB After Width: | Height: | Size: 139 KiB |
Before Width: | Height: | Size: 132 KiB After Width: | Height: | Size: 128 KiB |
Before Width: | Height: | Size: 124 KiB After Width: | Height: | Size: 121 KiB |
BIN
project/images/BattleChocolateCake.webp
Normal file
After Width: | Height: | Size: 94 KiB |
Before Width: | Height: | Size: 152 KiB After Width: | Height: | Size: 151 KiB |
Before Width: | Height: | Size: 136 KiB After Width: | Height: | Size: 136 KiB |
Before Width: | Height: | Size: 126 KiB After Width: | Height: | Size: 125 KiB |
Before Width: | Height: | Size: 150 KiB After Width: | Height: | Size: 150 KiB |
BIN
project/images/BattleHamburger.webp
Normal file
After Width: | Height: | Size: 110 KiB |
Before Width: | Height: | Size: 132 KiB After Width: | Height: | Size: 131 KiB |
BIN
project/images/BattleSmartDice.webp
Normal file
After Width: | Height: | Size: 87 KiB |
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 95 KiB |
@ -15117,7 +15117,8 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 =
|
|||||||
"Hightemperaturewarning", "RacoonAppears", "BUG", "JACKPOT", "Doubled", "Half", "ItsWar",
|
"Hightemperaturewarning", "RacoonAppears", "BUG", "JACKPOT", "Doubled", "Half", "ItsWar",
|
||||||
"NoEvent", "NoEvent", "NoEvent", "NoEvent", "NoEvent",
|
"NoEvent", "NoEvent", "NoEvent", "NoEvent", "NoEvent",
|
||||||
"BattleAttackM", "BattleAttackL", "BattleAttackG", "BattleDefendM", "BattleDefendL", "BattleDefendG",
|
"BattleAttackM", "BattleAttackL", "BattleAttackG", "BattleDefendM", "BattleDefendL", "BattleDefendG",
|
||||||
"BattleGaWuCut", "BattleCharge", "BattlePowerfulAttack",
|
"BattleGaWuCut", "BattleCharge", "BattlePowerfulAttack", "BattleHamburger", "BattleChocolateCake",
|
||||||
|
"BattleSmartDice"
|
||||||
]
|
]
|
||||||
this.CharacterList = ["勇者", "米米", "帕露南", "芬妮", "阿兰娜", "小町",
|
this.CharacterList = ["勇者", "米米", "帕露南", "芬妮", "阿兰娜", "小町",
|
||||||
"派德曼", "帕帕拉", "恋", "Z3000", "潘大猛", "璐璐",
|
"派德曼", "帕帕拉", "恋", "Z3000", "潘大猛", "璐璐",
|
||||||
@ -15439,8 +15440,8 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 =
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (this.cardpage > 0) core.drawImage(ctx, "Left_set.png", 3, 375, 34, 34)
|
if (this.cardpage > 0) core.drawImage(ctx, "Left_set.png", 3, 375, 34, 34)
|
||||||
if (this.cardpage < 6) core.drawImage(ctx, "Right_set.png", 380, 375, 34, 34)
|
if (this.cardpage < 7) core.drawImage(ctx, "Right_set.png", 380, 375, 34, 34)
|
||||||
core.fillText(ctx, "第 " + (this.cardpage + 1) + " / 7 页", 208, 400, "#FFFFFF", "24px STHUPO")
|
core.fillText(ctx, "第 " + (this.cardpage + 1) + " / 8 页", 208, 400, "#FFFFFF", "24px STHUPO")
|
||||||
if (this.selectioncard) {
|
if (this.selectioncard) {
|
||||||
core.fillRect(ctx, 0, 0, 416, 416, "#000000A0")
|
core.fillRect(ctx, 0, 0, 416, 416, "#000000A0")
|
||||||
core.drawImage(ctx, this.selectioncard + ".webp", 106, 49, 204, 324)
|
core.drawImage(ctx, this.selectioncard + ".webp", 106, 49, 204, 324)
|
||||||
@ -15824,7 +15825,7 @@ var plugins_bb40132b_638b_4a9f_b028_d3fe47acc8d1 =
|
|||||||
const cardRight = makeBox([380, 375], [34, 34])
|
const cardRight = makeBox([380, 375], [34, 34])
|
||||||
const cardListbox = makeBox([3, 44], [412, 326])
|
const cardListbox = makeBox([3, 44], [412, 326])
|
||||||
if (inRect(pos, Left) && fn.cardpage > 0) fn.cardpage--
|
if (inRect(pos, Left) && fn.cardpage > 0) fn.cardpage--
|
||||||
if (inRect(pos, cardRight) && fn.cardpage < 6) fn.cardpage++
|
if (inRect(pos, cardRight) && fn.cardpage < 7) fn.cardpage++
|
||||||
if (inRect(pos, cardListbox)) {
|
if (inRect(pos, cardListbox)) {
|
||||||
const index = fn.cardpage * 8 + Math.floor((py - 44) / 163) * 4 + Math.floor((px - 3) / 103)
|
const index = fn.cardpage * 8 + Math.floor((py - 44) / 163) * 4 + Math.floor((px - 3) / 103)
|
||||||
if (fn.cardList[index])
|
if (fn.cardList[index])
|
||||||
|