Commit 707dc9b3 authored by wind2009's avatar wind2009

Fix

parent 0ae5c2b8
......@@ -53,7 +53,7 @@ merge_databases:
FIELDS: 'name,desc,overallString,picUrl'
GIT_DEPTH: '1000'
OUTPUT_FILENAME: test-release.json
REF_COMMIT: '8.8' # 更新的时候改这里,修改成上一个tag的版本号
REF_COMMIT: '8.9' # 更新的时候改这里,修改成上一个tag的版本号
script:
- apt update;apt -y install wget
- currentPath=$PWD
......
No preview for this file type
......@@ -12,6 +12,7 @@
101207012
101207013
101207014
101207015
101207016
101207019
101207020
......@@ -51,6 +52,7 @@
101207073
101207074
101207075
101207076
101207077
101207079
101207080
\ No newline at end of file
pics/101207015.jpg

157 KB | W: | H:

pics/101207015.jpg

99.3 KB | W: | H:

pics/101207015.jpg
pics/101207015.jpg
pics/101207015.jpg
pics/101207015.jpg
  • 2-up
  • Swipe
  • Onion skin
pics/101207076.jpg

141 KB | W: | H:

pics/101207076.jpg

100 KB | W: | H:

pics/101207076.jpg
pics/101207076.jpg
pics/101207076.jpg
pics/101207076.jpg
  • 2-up
  • Swipe
  • Onion skin
......@@ -79,7 +79,7 @@ function s.thtg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function s.thop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if c:IsRelateToEffect(e) then
if c:IsRelateToEffect(e) and aux.NecroValleyFilter()(c) then
Duel.SendtoHand(c,nil,REASON_EFFECT)
end
end
......@@ -6,7 +6,7 @@ function s.initial_effect(c)
e1:SetType(EFFECT_TYPE_ACTIVATE)
e1:SetCode(EVENT_SUMMON)
e1:SetCountLimit(1,id)
e1:SetCondition(s.cndition)
e1:SetCondition(s.condition)
e1:SetTarget(s.target)
e1:SetOperation(s.activate)
c:RegisterEffect(e1)
......@@ -25,9 +25,10 @@ function s.initial_effect(c)
c:RegisterEffect(e3)
end
function s.cfilter(c)
return c:IsFaceup() and (c:IsSetCard(0x1b9) and c:IsLevelAbove(5) or c:IsType(TYPE_NORMAL) and not c:IsType(TYPE_TOKEN))
return c:IsFaceup() and not c:IsType(TYPE_TOKEN)
and (c:IsSetCard(0x1b9) and c:IsLevelAbove(5) or c:IsType(TYPE_NORMAL))
end
function s.cndition(e,tp,eg,ep,ev,re,r,rp)
function s.condition(e,tp,eg,ep,ev,re,r,rp)
return tp~=ep and Duel.GetCurrentChain()==0
and Duel.IsExistingMatchingCard(s.cfilter,tp,LOCATION_MZONE,0,1,nil)
end
......@@ -53,7 +54,7 @@ function s.settg(e,tp,eg,ep,ev,re,r,rp,chk)
end
function s.setop(e,tp,eg,ep,ev,re,r,rp)
local c=e:GetHandler()
if c:IsRelateToEffect(e) and Duel.SSet(tp,c)~=0 then
if c:IsRelateToEffect(e) and aux.NecroValleyFilter(c) and Duel.SSet(tp,c)~=0 then
local e1=Effect.CreateEffect(c)
e1:SetType(EFFECT_TYPE_SINGLE)
e1:SetCode(EFFECT_LEAVE_FIELD_REDIRECT)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment