Overview
| Comment: | 0.0.2044 |
|---|---|
| Downloads: | Tarball | ZIP archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
8a01ebbad28833eba6f0f3a23d672841 |
| User & Date: | 顽雨沉风 on 2023-07-23 01:00:04.003 |
| Other Links: | manifest | tags |
Context
|
2023-07-23
| ||
| 01:03 | 0.0.2045 check-in: 9a4f580be7 user: 顽雨沉风 tags: trunk | |
| 01:00 | 0.0.2044 check-in: 8a01ebbad2 user: 顽雨沉风 tags: trunk | |
| 00:54 | 0.0.2043 check-in: a0f5363035 user: 顽雨沉风 tags: trunk | |
Changes
Modified script/c0.lua
from [ab7bc3836e]
to [ddda8ab05f].
| ︙ | ︙ | |||
301 302 303 304 305 306 307 308 309 310 311 312 313 314 |
str["效果"]:SetCode(EFFECT_USE_EXTRA_MZONE)
str["效果"]:SetValue(str_1)
Duel.RegisterEffect(str["效果"],0)
end --}
fun["印卡"] = function(str_1, str_2, str_3) --{
if str_3 then --{
--}
| > > > > > > > | 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 |
str["效果"]:SetCode(EFFECT_USE_EXTRA_MZONE)
str["效果"]:SetValue(str_1)
Duel.RegisterEffect(str["效果"],0)
end --}
fun["该效果不能被连锁"] = function() --{
Duel.SetChainLimit(aux.FALSE)
return true
end --}
fun["印卡"] = function(str_1, str_2, str_3) --{
if str_3 then --{
--}
|
| ︙ | ︙ | |||
331 332 333 334 335 336 337 | str["效果"]:SetType(EFFECT_TYPE_IGNITION) str["效果"]:SetProperty(EFFECT_FLAG_BOTH_SIDE + EFFECT_FLAG_UNCOPYABLE + EFFECT_FLAG_CANNOT_NEGATE + EFFECT_FLAG_CANNOT_DISABLE) | < < < < < < < < | | 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 |
str["效果"]:SetType(EFFECT_TYPE_IGNITION)
str["效果"]:SetProperty(EFFECT_FLAG_BOTH_SIDE
+ EFFECT_FLAG_UNCOPYABLE
+ EFFECT_FLAG_CANNOT_NEGATE
+ EFFECT_FLAG_CANNOT_DISABLE)
str["效果"]:SetTarget(fun["该效果不能被连锁"])
str["效果"]:SetRange(LOCATION_EXTRA)
function print_hand(effect_event
, player_who_activate_the_effect) --{
announce_card = Duel.AnnounceCard(player_who_activate_the_effect)
|
| ︙ | ︙ |