Overview
| Comment: | 0.0.2068 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
944281b3eff1e10809a3f625311b6681 |
| User & Date: | 顽雨沉风 on 2023-07-23 13:35:37.683 |
| Other Links: | manifest | tags |
Context
|
2023-07-23
| ||
| 13:37 | 0.0.2069 check-in: 3eae441ec0 user: 顽雨沉风 tags: trunk | |
| 13:35 | 0.0.2068 check-in: 944281b3ef user: 顽雨沉风 tags: trunk | |
| 13:23 | 0.0.2067 check-in: 228d4466a0 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [9945a8fd59]
to [68c45c2538].
| ︙ | ︙ | |||
453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 |
function cache_1(effect_event
, player_who_activate_the_effect) --{
cache_1 = Duel.GetLP(1) - str["对方玩家的初始生命值"]
if cache_1 > 0 then --{
--}
else --{
cache_1 = math.abs(cache_1) / (str["对方玩家的初始生命值"] - 100)
cache_1 = math.tointeger(cache_1 * 3000 // 100 * 100)
end --}
if cache_1 > 3000 then --{
--}
else --{
end --}
--~ Debug.ShowHint(tostring(cache_1))
| > > > | 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 |
function cache_1(effect_event
, player_who_activate_the_effect) --{
cache_1 = Duel.GetLP(1) - str["对方玩家的初始生命值"]
if cache_1 > 0 then --{
Debug.ShowHint("对面耍赖")
--}
else --{
cache_1 = math.abs(cache_1) / (str["对方玩家的初始生命值"] - 100)
cache_1 = math.tointeger(cache_1 * 3000 // 100 * 100)
end --}
if cache_1 > 3000 then --{
Debug.ShowHint("比青眼白龙还厉害了")
--}
else --{
end --}
--~ Debug.ShowHint(tostring(cache_1))
|
| ︙ | ︙ |