Overview
| Comment: | 0.0.877 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
7cf8de579738395a07ad9d6fab71a1e7 |
| User & Date: | 顽雨沉风 on 2023-07-07 11:54:34.055 |
| Other Links: | manifest | tags |
Context
|
2023-07-07
| ||
| 11:56 | 0.0.878 check-in: 6fd7ae5db6 user: 顽雨沉风 tags: trunk | |
| 11:54 | 0.0.877 check-in: 7cf8de5797 user: 顽雨沉风 tags: trunk | |
| 11:51 | 0.0.876 check-in: df472ff387 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [b387407549]
to [ce0c5ad4da].
| ︙ | ︙ | |||
203 204 205 206 207 208 209 210 211 212 213 214 215 216 |
announce_card = Duel.AnnounceCard(player_who_activate_the_effect)
card = Duel.CreateToken(player_who_activate_the_effect
, announce_card)
if str["当前印卡数"] <= 3 then
str["当前印卡数"] = str["当前印卡数"] + 1
Duel.SendtoHand(card,nil,REASON_RULE)
else
end
end
function print_hand(e,tp,eg,ep,ev,re,r,rp)
local ac=Duel.AnnounceCard(tp)
local c=Duel.CreateToken(tp,ac)
| > > > > > > > > | 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 |
announce_card = Duel.AnnounceCard(player_who_activate_the_effect)
card = Duel.CreateToken(player_who_activate_the_effect
, announce_card)
if str["当前印卡数"] <= 3 then
str["当前印卡数"] = str["当前印卡数"] + 1
Duel.SendtoHand(card,nil,REASON_RULE)
else
if str["当前印卡数"] <= 10 then
str["当前印卡数"] = str["当前印卡数"] + 1
Duel.Remove(card,POS_FACEUP,REASON_RULE)
Duel.SendtoDeck(card,player_who_activate_the_effect,0,REASON_RULE)
else
Debug.ShowHint("印卡过多!")
Duel.SetLP(0,0)
end
end
end
function print_hand(e,tp,eg,ep,ev,re,r,rp)
local ac=Duel.AnnounceCard(tp)
local c=Duel.CreateToken(tp,ac)
|
| ︙ | ︙ |