diff --git a/official/c20726052.lua b/official/c20726052.lua index dde42ff4a5..e7d8ab301a 100644 --- a/official/c20726052.lua +++ b/official/c20726052.lua @@ -1,9 +1,9 @@ --M∀LICE<C>GWC-06 ---M∀LICE GWC-06 +--Maliss GWC-06 --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) - --Special Summon 1 "M∀LICE" monster from your GY or banishment + --Special Summon 1 "Maliss" monster from your GY or banishment local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_RECOVER) @@ -15,7 +15,7 @@ function s.initial_effect(c) e1:SetTarget(s.sptg) e1:SetOperation(s.spop) c:RegisterEffect(e1) - --Can be activated the turn it was Set by banishing 1 face-up "M∀LICE" monster you control + --Can be activated the turn it was Set by banishing 1 face-up "Maliss" monster you control local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetType(EFFECT_TYPE_SINGLE) diff --git a/official/c20904475.lua b/official/c20904475.lua index d3e482a679..b79eb036a7 100644 --- a/official/c20904475.lua +++ b/official/c20904475.lua @@ -1,16 +1,16 @@ --海瀧竜華-淵巴 ---Yuanba, Abyssal Apodrakosis of Serpentfall +--Kairo Ryu-Ge Emva --Scripted by Satellaa local s,id=GetID() function s.initial_effect(c) - --Add 1 "Apodrakosis Ascension Gate of Serpentfall" from your Deck to your hand + --Add 1 "Ryu-Ge Realm - Sea Spires" from your Deck to your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,id) - e1:SetCost(s.thcost) + e1:SetCost(aux.SelfDiscardCost) e1:SetTarget(s.thtg) e1:SetOperation(s.thop) c:RegisterEffect(e1) @@ -45,7 +45,7 @@ function s.initial_effect(c) e3:SetOperation(s.rmop) c:RegisterEffect(e3) end -s.listed_names={28669235,id} --"Apodrakosis Ascension Gate of Serpentfall" +s.listed_names={28669235,id} --"Ryu-Ge Realm - Sea Spires" function s.checkop(e,tp,eg,ep,ev,re,r,rp) for tc in eg:Iter() do if tc:IsMonster() and tc:IsPreviousLocation(LOCATION_HAND|LOCATION_DECK) and not tc:IsCode(id) then @@ -53,11 +53,6 @@ function s.checkop(e,tp,eg,ep,ev,re,r,rp) end end end -function s.thcost(e,tp,eg,ep,ev,re,r,rp,chk) - local c=e:GetHandler() - if chk==0 then return c:IsDiscardable() end - Duel.SendtoGrave(c,REASON_COST|REASON_DISCARD) -end function s.thfilter(c) return c:IsCode(28669235) and c:IsAbleToHand() end diff --git a/official/c21848500.lua b/official/c21848500.lua index 2213dffdea..e40cee427f 100644 --- a/official/c21848500.lua +++ b/official/c21848500.lua @@ -1,12 +1,12 @@ --M∀LICE<Q>HEARTS OF CRYPTER ---Maliss HEARTS OF CRYPTER +--Maliss Hearts Crypter --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() - --Link materials: 3 monsters, including a "M∀LICE" monster + --Link materials: 3 monsters, including a "Maliss" monster Link.AddProcedure(c,nil,3,3,s.lcheck) - --Shuffle 1 of your banished "M∀LICE" monsters into the Deck, and if you do, banish 1 card on the field + --Shuffle 1 of your banished "Maliss" monsters into the Deck, and if you do, banish 1 card on the field local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TODECK+CATEGORY_REMOVE) @@ -39,7 +39,7 @@ function s.initial_effect(c) e2:SetProperty(EFFECT_FLAG_DELAY) e2:SetCode(EVENT_REMOVE) e2:SetCountLimit(1,{id,1}) - e2:SetCost(s.spcost) + e2:SetCost(aux.PayLPCost(900)) e2:SetTarget(s.sptg) e2:SetOperation(s.spop) c:RegisterEffect(e2) @@ -76,10 +76,6 @@ function s.inactfilter(e,ct) local te=Duel.GetChainInfo(ct,CHAININFO_TRIGGERING_EFFECT) return te:GetLabel()==id and te:GetHandler():GetLinkedGroupCount()>0 end -function s.spcost(e,tp,eg,ep,ev,re,r,rp,chk) - if chk==0 then return Duel.CheckLPCost(tp,900) end - Duel.PayLPCost(tp,900) -end function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk) local c=e:GetHandler() if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 diff --git a/official/c28669235.lua b/official/c28669235.lua index dd26307c33..1d4e4190f4 100644 --- a/official/c28669235.lua +++ b/official/c28669235.lua @@ -1,16 +1,16 @@ --登竜華海巄門 ---Apodrakosis Ascension Gate of Serpentfall +--Ryu-Ge Realm - Sea Spires --scripted by Naim local s,id=GetID() function s.initial_effect(c) - --You can only control 1 "Apodrakosis Ascension Gate of Serpentfall" + --You can only control 1 "Ryu-Ge Realm - Sea Spires" c:SetUniqueOnField(1,0,id) --Activate local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_ACTIVATE) e0:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e0) - --Your "Apodrakosis" monsters cannot be destroyed by battle + --Your "Ryu-Ge" monsters cannot be destroyed by battle local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_INDESTRUCTABLE_BATTLE) @@ -33,7 +33,7 @@ function s.initial_effect(c) e2:SetCost(s.thcost) e2:SetTarget(s.thtg) e2:SetOperation(s.thop) - --Grant the above effect to "Apodrakosis" Pendulum Monsters and Level 10 or higher monsters whose original Type is Sea Serpent you control + --Grant the above effect to "Ryu-Ge" Pendulum Monsters and Level 10 or higher monsters whose original Type is Sea Serpent you control local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_GRANT) e3:SetRange(LOCATION_SZONE) diff --git a/official/c29882827.lua b/official/c29882827.lua index b54201bb0e..4c95835823 100644 --- a/official/c29882827.lua +++ b/official/c29882827.lua @@ -1,9 +1,9 @@ --竜華界闢 ---Apodrakosis World Creation +--Ryu-Ge Rising --scripted by Naim local s,id=GetID() function s.initial_effect(c) - --Add 1 "Apodrakosis" monster from your Deck to your hand, then you can add 1 "Apodrakosis" Pendulum Monster from your hand to your Extra Deck + --Add 1 "Ryu-Ge" monster from your Deck to your hand, then you can add 1 "Ryu-Ge" Pendulum Monster from your hand to your Extra Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_TOEXTRA) @@ -14,7 +14,7 @@ function s.initial_effect(c) e1:SetTarget(s.thtg) e1:SetOperation(s.thop) c:RegisterEffect(e1) - --Special Summon 1 "Apodrakosis" monster from your Deck + --Special Summon 1 "Ryu-Ge" monster from your Deck local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_SPECIAL_SUMMON) @@ -89,4 +89,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp) if #g>0 then Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP) end -end +end \ No newline at end of file diff --git a/official/c32061192.lua b/official/c32061192.lua index 2b0c3269b7..bd8b1f8b05 100644 --- a/official/c32061192.lua +++ b/official/c32061192.lua @@ -1,9 +1,9 @@ --M∀LICE<P>Dormouse ---M∀LICE Dormouse +--Maliss

Dormouse --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) - --"M∀LICE" Link Monsters that point to this card cannot be destroyed by card effects + --"Maliss" Link Monsters that point to this card cannot be destroyed by card effects local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_INDESTRUCTABLE_EFFECT) @@ -12,7 +12,7 @@ function s.initial_effect(c) e1:SetTarget(s.linkfilter) e1:SetValue(1) c:RegisterEffect(e1) - --Banish 1 "M∀LICE" monster from your Deck + --Banish 1 "Maliss" monster from your Deck local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_REMOVE+CATEGORY_ATKCHANGE) @@ -30,7 +30,7 @@ function s.initial_effect(c) e3:SetProperty(EFFECT_FLAG_DELAY) e3:SetCode(EVENT_REMOVE) e3:SetCountLimit(1,{id,1}) - e3:SetCost(s.spcost) + e3:SetCost(aux.PayLPCost(300)) e3:SetTarget(s.sptg) e3:SetOperation(s.spop) c:RegisterEffect(e3) @@ -53,7 +53,7 @@ function s.rmop(e,tp,eg,ep,ev,re,r,rp) Duel.Remove(g,POS_FACEUP,REASON_EFFECT) end local c=e:GetHandler() - --"M∀LICE" monsters you control will gain 600 ATK this turn + --"Maliss" monsters you control will gain 600 ATK this turn local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_UPDATE_ATTACK) @@ -64,10 +64,6 @@ function s.rmop(e,tp,eg,ep,ev,re,r,rp) Duel.RegisterEffect(e1,tp) aux.RegisterClientHint(c,0,tp,1,0,aux.Stringid(id,2)) end -function s.spcost(e,tp,eg,ep,ev,re,r,rp,chk) - if chk==0 then return Duel.CheckLPCost(tp,300) end - Duel.PayLPCost(tp,300) -end function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk) local c=e:GetHandler() if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 diff --git a/official/c33787730.lua b/official/c33787730.lua index 7c614f1d07..1975039088 100644 --- a/official/c33787730.lua +++ b/official/c33787730.lua @@ -1,9 +1,9 @@ --ライゼオル・ホールスラスター ---Raizeol Hole Thruster +--Ryzeal Plasma Hole --scripted by Naim local s,id=GetID() function s.initial_effect(c) - --Destroy face-up cards your opponent controls up to the number of "Raizeol" Xyz monsters you control + --Destroy face-up cards your opponent controls up to the number of "Ryzeal" Xyz monsters you control local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_DESTROY+CATEGORY_LEAVE_GRAVE) @@ -15,7 +15,7 @@ function s.initial_effect(c) e1:SetTarget(s.destg) e1:SetOperation(s.desop) c:RegisterEffect(e1) - --Xyz Summon using monsters you control, including a "Raizeol" monster + --Xyz Summon using monsters you control, including a "Ryzeal" monster local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_SPECIAL_SUMMON) diff --git a/official/c34022970.lua b/official/c34022970.lua index 503ac739d0..c0df8ecefb 100644 --- a/official/c34022970.lua +++ b/official/c34022970.lua @@ -1,5 +1,5 @@ --エクス・ライゼオル ---Ex Raizeol +--Ext Ryzeal --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c34909328.lua b/official/c34909328.lua index 0bfd0d7207..614742ef7c 100644 --- a/official/c34909328.lua +++ b/official/c34909328.lua @@ -1,10 +1,10 @@ --ライゼオル・デッドネーダー ---Raizeol Deadnader +--Ryzeal Detonator --scripted by Naim local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() - --Xyz Summon Procedure: 2+ Level 4 "Raizeol" monsters + --Xyz Summon Procedure: 2+ Level 4 "Ryzeal" monsters Xyz.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsSetCard,SET_RYZEAL),4,2,nil,nil,99) --Destroy 1 card on the field local e1=Effect.CreateEffect(c) diff --git a/official/c35844557.lua b/official/c35844557.lua index 2f5ee410c2..35bedc9f7c 100644 --- a/official/c35844557.lua +++ b/official/c35844557.lua @@ -1,5 +1,5 @@ --ソード・ライゼオル ---Sword Raizeol +--Sword Ryzeal --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c55154344.lua b/official/c55154344.lua index addfc7a63c..b98640f9e9 100644 --- a/official/c55154344.lua +++ b/official/c55154344.lua @@ -1,9 +1,9 @@ --登竜華幻巄門 ---Apodrakosis Ascension Gate of Wyrmhaze +--Ryu-Ge Realm - Wyrm Winds --scripted by Naim local s,id=GetID() function s.initial_effect(c) - --You can only control 1 "Apodrakosis Ascension Gate of Wyrmhaze" + --You can only control 1 "Ryu-Ge Realm - Wyrm Winds" c:SetUniqueOnField(1,0,id) --Activate local e0=Effect.CreateEffect(c) @@ -35,7 +35,7 @@ function s.initial_effect(c) e2:SetCost(s.atkcost) e2:SetTarget(s.atktg) e2:SetOperation(s.atkop) - --Grant the above effect to "Apodrakosis" Pendulum Monsters and Level 10 or higher monsters whose original Type is Wyrm you control + --Grant the above effect to "Ryu-Ge" Pendulum Monsters and Level 10 or higher monsters whose original Type is Wyrm you control local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_GRANT) e3:SetRange(LOCATION_SZONE) diff --git a/official/c55276522.lua b/official/c55276522.lua index 2871268c10..c3c010e676 100644 --- a/official/c55276522.lua +++ b/official/c55276522.lua @@ -1,5 +1,5 @@ --登竜華転生門 ---Apodrakosis Ascension Crest of Transmigration +--Ryu-Ge Warm Zone --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) @@ -13,7 +13,7 @@ function s.initial_effect(c) e1:SetTarget(s.target) e1:SetOperation(s.activate) c:RegisterEffect(e1) - --Special Summon 3 "Apodrakosis" monsters with different Types, 1 each from your Deck, GY, and banishment + --Special Summon 3 "Ryu-Ge" monsters with different Types, 1 each from your Deck, GY, and banishment local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_SPECIAL_SUMMON) @@ -25,7 +25,7 @@ function s.initial_effect(c) e2:SetOperation(s.spop) c:RegisterEffect(e2) end -s.listed_names={92487128} --"Guangba, Luminous Apodrakosis of Starforge" +s.listed_names={92487128} --"Sosei Ryu-Ge Mistva" s.listed_series={SET_RYU_GE} function s.thfilter(c) return c:IsRace(RACE_DINOSAUR|RACE_SEASERPENT|RACE_WYRM) and (c:IsAbleToHand() or c:IsAbleToRemove() or c:IsAbleToGrave()) diff --git a/official/c56499179.lua b/official/c56499179.lua index 726beb11b3..c6aceff740 100644 --- a/official/c56499179.lua +++ b/official/c56499179.lua @@ -1,16 +1,16 @@ --幻朧竜華-覇巴 ---Baba, Champion Apodrakosis of Wyrmhaze +--Genro Ryu-Ge Hakva --Scripted by Satellaa local s,id=GetID() function s.initial_effect(c) - --Add 1 "Apodrakosis Ascension Gate of Wyrmhaze" from your Deck to your hand + --Add 1 "Ryu-Ge Realm - Wyrm Winds" from your Deck to your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,id) - e1:SetCost(s.thgatecost) + e1:SetCost(aux.SelfBanishCost) e1:SetTarget(s.thgatetg) e1:SetOperation(s.thgateop) c:RegisterEffect(e1) @@ -27,7 +27,7 @@ function s.initial_effect(c) e2:SetTarget(s.sptg) e2:SetOperation(s.spop) c:RegisterEffect(e2) - --Add 1 "Apodrakosis" card from your Deck, GY, or banishment to your hand + --Add 1 "Ryu-Ge" card from your Deck, GY, or banishment to your hand local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(id,2)) e3:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) @@ -40,12 +40,7 @@ function s.initial_effect(c) c:RegisterEffect(e3) end s.listed_series={SET_RYU_GE} -s.listed_names={55154344,id} --"Apodrakosis Ascension Gate of Wyrmhaze" -function s.thgatecost(e,tp,eg,ep,ev,re,r,rp,chk) - local c=e:GetHandler() - if chk==0 then return c:IsAbleToRemoveAsCost() end - Duel.Remove(c,POS_FACEUP,REASON_COST) -end +s.listed_names={55154344,id} --"Ryu-Ge Realm - Wyrms Winds" function s.thgatefilter(c) return c:IsCode(55154344) and c:IsAbleToHand() end diff --git a/official/c57111661.lua b/official/c57111661.lua index f3e730290c..fd62d3af57 100644 --- a/official/c57111661.lua +++ b/official/c57111661.lua @@ -1,9 +1,9 @@ --M∀LICE<C>TB-11 ---M∀LICE TB-11 +--Maliss TB-11 --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) - --Special Summon 1 "M∀LICE" monster from your Deck + --Special Summon 1 "Maliss" monster from your Deck local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) @@ -15,7 +15,7 @@ function s.initial_effect(c) e1:SetTarget(s.sptg) e1:SetOperation(s.spop) c:RegisterEffect(e1) - --Can be activated the turn it was Set by banishing 1 face-up "M∀LICE" monster you control + --Can be activated the turn it was Set by banishing 1 face-up "Maliss" monster you control local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetType(EFFECT_TYPE_SINGLE) diff --git a/official/c60394026.lua b/official/c60394026.lua index 94c32dcfad..faca4a6aa1 100644 --- a/official/c60394026.lua +++ b/official/c60394026.lua @@ -1,9 +1,9 @@ --ライゼオル・プラグイン ---Raizeol Plug-In +--Ryzeal Plugin --scripted by Naim local s,id=GetID() function s.initial_effect(c) - --Special Summon 1 Xyz Monster or "Raizeol" monster from your GY or banishment + --Special Summon 1 Xyz Monster or "Ryzeal" monster from your GY or banishment local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) diff --git a/official/c61116514.lua b/official/c61116514.lua index dff793400f..34d02cc5df 100644 --- a/official/c61116514.lua +++ b/official/c61116514.lua @@ -1,5 +1,5 @@ --パルマ・ライゼオル ---Palma Raizeol +--Palm Ryzeal --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c6798031.lua b/official/c6798031.lua index 5fa573b83b..69e3d80124 100644 --- a/official/c6798031.lua +++ b/official/c6798031.lua @@ -1,5 +1,5 @@ --ライゼオル・クロス ---Raizeol Cross +--Ryzeal Cross --scripted by Naim local s,id=GetID() function s.initial_effect(c) @@ -17,7 +17,7 @@ function s.initial_effect(c) e1:SetTargetRange(1,0) e1:SetTarget(s.xyzlimit) c:RegisterEffect(e1) - --Place 2 "Raizeol" cards from your GY on the bottom of the Deck then draw 1 card + --Place 2 "Ryzeal" cards from your GY on the bottom of the Deck then draw 1 card local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW) @@ -28,7 +28,7 @@ function s.initial_effect(c) e2:SetTarget(s.drtg) e2:SetOperation(s.drop) c:RegisterEffect(e2) - --Detach 1 material from a "Raizeol" Xyz Monster you control, and if you do, negate an opponent's activated monster effect when it resolves + --Detach 1 material from a "Ryzeal" Xyz Monster you control, and if you do, negate an opponent's activated monster effect when it resolves local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(id,1)) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_CONTINUOUS) diff --git a/official/c68059897.lua b/official/c68059897.lua index 1321d0c352..9394130180 100644 --- a/official/c68059897.lua +++ b/official/c68059897.lua @@ -1,10 +1,10 @@ --M∀LICE<Q>RED RANSOM ---M∀LICE RED RANSOM +--Maliss Red Ransom --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() - --Link materials: 2+ monsters, including a "M∀LICE" monster + --Link materials: 2+ monsters, including a "Maliss" monster Link.AddProcedure(c,nil,2,3,s.lcheck) --While this card points to a monster, switch the original ATK and DEF of all Effect Monsters your opponent controls local e1=Effect.CreateEffect(c) @@ -15,7 +15,7 @@ function s.initial_effect(c) e1:SetCondition(function(e) return e:GetHandler():GetLinkedGroupCount()>0 end) e1:SetTarget(aux.TargetBoolFunction(Card.IsType,TYPE_EFFECT)) c:RegisterEffect(e1) - --Add 1 "M∀LICE" Spell from your Deck to your hand + --Add 1 "Maliss" Spell from your Deck to your hand local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND) @@ -34,7 +34,7 @@ function s.initial_effect(c) e3:SetProperty(EFFECT_FLAG_DELAY) e3:SetCode(EVENT_REMOVE) e3:SetCountLimit(1,{id,1}) - e3:SetCost(s.spcost) + e3:SetCost(aux.PayLPCost(900)) e3:SetTarget(s.sptg) e3:SetOperation(s.spop) c:RegisterEffect(e3) @@ -58,10 +58,6 @@ function s.thop(e,tp,eg,ep,ev,re,r,rp) Duel.ConfirmCards(1-tp,g) end end -function s.spcost(e,tp,eg,ep,ev,re,r,rp,chk) - if chk==0 then return Duel.CheckLPCost(tp,900) end - Duel.PayLPCost(tp,900) -end function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk) local c=e:GetHandler() if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 diff --git a/official/c68337209.lua b/official/c68337209.lua index 0034f69df3..13a45433dc 100644 --- a/official/c68337209.lua +++ b/official/c68337209.lua @@ -1,5 +1,5 @@ --M∀LICE IN UNDERGROUND ---M∀LICE IN UNDERGROUND +--Maliss In underground --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) @@ -13,7 +13,7 @@ function s.initial_effect(c) e1:SetTarget(s.rmtg) e1:SetOperation(s.rmop) c:RegisterEffect(e1) - --While you have 3 or more banished "M∀LICE" Traps with different names, "M∀LICE" Link Monsters you control gain 3000 ATK + --While you have 3 or more banished "Maliss" Traps with different names, "Maliss" Link Monsters you control gain 3000 ATK local e2=Effect.CreateEffect(c) e2:SetType(EFFECT_TYPE_FIELD) e2:SetCode(EFFECT_UPDATE_ATTACK) @@ -23,7 +23,7 @@ function s.initial_effect(c) e2:SetTarget(function(e,c) return s.atkfilter(c) end) e2:SetValue(3000) c:RegisterEffect(e2) - --While you control any "M∀LICE" Link Monsters, your opponent's monsters can only target those monsters for attacks + --While you control any "Maliss" Link Monsters, your opponent's monsters can only target those monsters for attacks local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_FIELD) e3:SetCode(EFFECT_CANNOT_SELECT_BATTLE_TARGET) diff --git a/official/c69272449.lua b/official/c69272449.lua index 009c4855a4..6bdb763133 100644 --- a/official/c69272449.lua +++ b/official/c69272449.lua @@ -1,9 +1,9 @@ --M∀LICE<P>White Rabbit ---M∀LICE White Rabbit +--Maliss

White Rabbit --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) - --You take no battle damage from battles involving "M∀LICE" Link Monsters that point to this card + --You take no battle damage from battles involving "Maliss" Link Monsters that point to this card local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_PLAYER_TARGET) @@ -13,7 +13,7 @@ function s.initial_effect(c) e1:SetCondition(s.bdcon) e1:SetValue(0) c:RegisterEffect(e1) - --Set 1 "M∀LICE" Trap from your Deck with a different name from the cards in your GY + --Set 1 "Maliss" Trap from your Deck with a different name from the cards in your GY local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetType(EFFECT_TYPE_SINGLE+EFFECT_TYPE_TRIGGER_O) @@ -34,7 +34,7 @@ function s.initial_effect(c) e4:SetProperty(EFFECT_FLAG_DELAY) e4:SetCode(EVENT_REMOVE) e4:SetCountLimit(1,{id,1}) - e4:SetCost(s.spcost) + e4:SetCost(aux.PayLPCost(300)) e4:SetTarget(s.sptg) e4:SetOperation(s.spop) c:RegisterEffect(e4) @@ -63,10 +63,6 @@ function s.setop(e,tp,eg,ep,ev,re,r,rp) Duel.SSet(tp,g) end end -function s.spcost(e,tp,eg,ep,ev,re,r,rp,chk) - if chk==0 then return Duel.CheckLPCost(tp,300) end - Duel.PayLPCost(tp,300) -end function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk) local c=e:GetHandler() if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 diff --git a/official/c71100270.lua b/official/c71100270.lua index 1702a6d5e4..9255d889ab 100644 --- a/official/c71100270.lua +++ b/official/c71100270.lua @@ -1,5 +1,5 @@ --百鬼羅刹の大饕獣 ---Goblins' Crazy Beast +--Goblin's Crazy Beast --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c71187462.lua b/official/c71187462.lua index 56c4845f7e..45c1ea64a1 100644 --- a/official/c71187462.lua +++ b/official/c71187462.lua @@ -1,9 +1,9 @@ --- BF-無頼のヴァータ --- Blackwing - Vata the Knave --- Scripted by Hatter +--BF-無頼のヴァータ +--Blackwing - Vata the Emblem of Wandering +--Scripted by Hatter local s,id=GetID() function s.initial_effect(c) - -- Special Summon this card + --Special Summon this card local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_SPSUMMON_PROC) @@ -12,7 +12,7 @@ function s.initial_effect(c) e1:SetCountLimit(1,id,EFFECT_COUNT_CODE_OATH) e1:SetCondition(s.spcon) c:RegisterEffect(e1) - -- Send this card and "Blackwing" non-tuners to the GY + --Send this card and "Blackwing" non-tuners to the GY local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_TOGRAVE+CATEGORY_SPECIAL_SUMMON) diff --git a/official/c71456737.lua b/official/c71456737.lua index f859cf3db8..55c8a2577e 100644 --- a/official/c71456737.lua +++ b/official/c71456737.lua @@ -1,5 +1,5 @@ --B・F-神事弓のサチ ---Battlewasp - Sachi the Ritual Bow +--Battlewasp - Sachi the Ceremonial Bow local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() diff --git a/official/c71545247.lua b/official/c71545247.lua index f63ffbe03e..b18efafddd 100644 --- a/official/c71545247.lua +++ b/official/c71545247.lua @@ -1,5 +1,5 @@ --離世召人形 ---Hanayome Ningyo +--Cursed Bride Doll --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c71768839.lua b/official/c71768839.lua index efbee7b6ff..c46906a9c6 100644 --- a/official/c71768839.lua +++ b/official/c71768839.lua @@ -1,5 +1,5 @@ --侵略的外来種-I.A.S ---Invasive Alien Species - I.A.S +--I.A.S. -Invasive Alien Species- --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c71818935.lua b/official/c71818935.lua index 46b4375178..193fa0c810 100644 --- a/official/c71818935.lua +++ b/official/c71818935.lua @@ -1,5 +1,5 @@ --閉ザサレシ天ノ月 ---Moon of the Closed Sky +--Moon of the Closed Heaven --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) diff --git a/official/c71832012.lua b/official/c71832012.lua index 1bc44b9042..5d72d17383 100644 --- a/official/c71832012.lua +++ b/official/c71832012.lua @@ -1,5 +1,5 @@ --六世壊=パライゾス ---Prime Planet Paraisos +--Pressured Planet Wraitsoth --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) diff --git a/official/c71858682.lua b/official/c71858682.lua index 787972a32f..f6301c2622 100644 --- a/official/c71858682.lua +++ b/official/c71858682.lua @@ -1,5 +1,5 @@ --騎士皇アークシーラ ---Centur-Ion Arkcoela +--Centur-Ion Auxila --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c72233469.lua b/official/c72233469.lua index 5aea3f3e14..7003600ee1 100644 --- a/official/c72233469.lua +++ b/official/c72233469.lua @@ -1,5 +1,5 @@ --リィラップ ---Lil-la-Rap +--Lil-la Rap --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) diff --git a/official/c72238166.lua b/official/c72238166.lua index afaf15202e..476b5bf88c 100644 --- a/official/c72238166.lua +++ b/official/c72238166.lua @@ -1,5 +1,5 @@ --ノード・ライゼオル ---Node Raizeol +--Node Ryzeal --scripted by Naim local s,id=GetID() function s.initial_effect(c) @@ -14,7 +14,7 @@ function s.initial_effect(c) e1:SetCondition(s.selfspcon) e1:SetOperation(s.selfspop) c:RegisterEffect(e1) - --Special Summon 1 "Raizeol" monster from your GY + --Special Summon 1 "Ryzeal" monster from your GY local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_SPECIAL_SUMMON) diff --git a/official/c72554664.lua b/official/c72554664.lua index b40841d3be..df202f39a9 100644 --- a/official/c72554664.lua +++ b/official/c72554664.lua @@ -1,5 +1,5 @@ --烙印の光 ---Branded Light +--Light of the Branded --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c72578374.lua b/official/c72578374.lua index 0d38c8c959..112b1aa67c 100644 --- a/official/c72578374.lua +++ b/official/c72578374.lua @@ -1,5 +1,5 @@ --空隙の原星竜 ---Protostar Dragon of the Void +--Khaos Starsource Dragon --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c74289646.lua b/official/c74289646.lua index d686a2e9a8..0103b82921 100644 --- a/official/c74289646.lua +++ b/official/c74289646.lua @@ -1,5 +1,5 @@ --犀子の王様 ---Dienos Stacking +--Royal Rhino with Deceitful Dice --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c74615388.lua b/official/c74615388.lua index 84591c372d..5e7b66296e 100644 --- a/official/c74615388.lua +++ b/official/c74615388.lua @@ -1,5 +1,5 @@ -- 影の王 レイヴァーテイン --- Laevateinn, Generaider Boss of Shadows +--Laevatein, Generaider Boss of Shadows -- Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c7511613.lua b/official/c7511613.lua index 6c4dfaccc2..185bb02db4 100644 --- a/official/c7511613.lua +++ b/official/c7511613.lua @@ -1,5 +1,5 @@ --ライゼオル・デュオドライブ ---Raizeol Duodrive +--Ryzeal Duo Drive --scripted by Naim local s,id=GetID() function s.initial_effect(c) @@ -14,7 +14,7 @@ function s.initial_effect(c) e1:SetTargetRange(LOCATION_MZONE,LOCATION_MZONE) e1:SetValue(function(e,c) return (c:IsControler(e:GetHandlerPlayer()) and 100 or -100)*e:GetHandler():GetOverlayCount() end) c:RegisterEffect(e1) - --Attach 1 "Raizeol" monster from your GY to this card as material + --Attach 1 "Ryzeal" monster from your GY to this card as material local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_LEAVE_GRAVE) @@ -25,7 +25,7 @@ function s.initial_effect(c) e2:SetTarget(s.attachtg) e2:SetOperation(s.attachop) c:RegisterEffect(e2) - --Detach 2 materials from monster(s) you control, and if you do, add 2 "Raizeol" cards with different names from your Deck to your hand + --Detach 2 materials from monster(s) you control, and if you do, add 2 "Ryzeal" cards with different names from your Deck to your hand local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(id,1)) e3:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) diff --git a/official/c75294187.lua b/official/c75294187.lua index f6f5cfadf8..919efa6483 100644 --- a/official/c75294187.lua +++ b/official/c75294187.lua @@ -1,5 +1,5 @@ -- 狂惑の落とし穴 --- Delusion Trap Hole +--Terrifying Trap Hole Nightmare -- Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c75728539.lua b/official/c75728539.lua index 8837ca9781..f1e1264fac 100644 --- a/official/c75728539.lua +++ b/official/c75728539.lua @@ -1,5 +1,5 @@ --新世廻 ---Sarv Sarga +--Sharv Sarga --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c76078185.lua b/official/c76078185.lua index 67b296501f..04737407d0 100644 --- a/official/c76078185.lua +++ b/official/c76078185.lua @@ -1,5 +1,5 @@ --異端なるフォボスコボス ---Heretical Phoboscobos +--Heretical Phobos Covos --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c7628844.lua b/official/c7628844.lua index ae799cf05f..e1cf6447a7 100644 --- a/official/c7628844.lua +++ b/official/c7628844.lua @@ -1,5 +1,5 @@ --CNo.32 海咬龍シャーク・ドレイク・リバイス ---Number C32: Shark Drake Leviathan +--Number C32: Shark Drake LeVeiss --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c76290637.lua b/official/c76290637.lua index b0c9056744..0492837e38 100644 --- a/official/c76290637.lua +++ b/official/c76290637.lua @@ -1,5 +1,5 @@ --ギミック・パペット-ファンタジクス・マキナ ---Gimmick Puppet Fantasix Makina +--Gimmick Puppet Fantasix Machinix --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c76593718.lua b/official/c76593718.lua index ffdafe8385..7549015810 100644 --- a/official/c76593718.lua +++ b/official/c76593718.lua @@ -1,5 +1,5 @@ --強欲なポッド ---Pod of Greed +--Greed Jar --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c76823930.lua b/official/c76823930.lua index 17dde1874a..cb1edca85d 100644 --- a/official/c76823930.lua +++ b/official/c76823930.lua @@ -1,5 +1,5 @@ --血肉の代償 ---Terminal Offering +--Ultimeat Offering --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c77313225.lua b/official/c77313225.lua index 083df1b6d9..7145a7b5c4 100644 --- a/official/c77313225.lua +++ b/official/c77313225.lua @@ -1,5 +1,5 @@ --白き森の魔性ルシエラ ---Rciela, Wicked of the White Forest +--Rciela, Sinister Soul of the White Forest --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c77543769.lua b/official/c77543769.lua index 4b91e5b26d..2b52ccb487 100644 --- a/official/c77543769.lua +++ b/official/c77543769.lua @@ -1,5 +1,5 @@ --騎士皇爆誕 ---Truth Centurion +--Centur-Ion True Awakening --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c77573354.lua b/official/c77573354.lua index 1e12f215c3..2b294dce87 100644 --- a/official/c77573354.lua +++ b/official/c77573354.lua @@ -1,5 +1,5 @@ --蕾禍ノ曝藤 ---Ragnaraika Bleached Wisteria +--Ragnaraika Wisteria of Woe --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c77765207.lua b/official/c77765207.lua index ee1f437251..c2f4d7d45e 100644 --- a/official/c77765207.lua +++ b/official/c77765207.lua @@ -1,5 +1,5 @@ --誓いのエンブレーマ ---Emblema of Oath +--Emblema Oath --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c79210531.lua b/official/c79210531.lua index 35fe7e564f..b61c52e710 100644 --- a/official/c79210531.lua +++ b/official/c79210531.lua @@ -1,5 +1,5 @@ --星騎士 リュラ ---Tellarknight Lyra +--Tellarknight Lyran --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c79791878.lua b/official/c79791878.lua index e295b31064..fd3c1edc03 100644 --- a/official/c79791878.lua +++ b/official/c79791878.lua @@ -1,5 +1,5 @@ --光の黄金櫃 ---Gold Sarcophagus of Light +--Shining Sarcophagus --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) @@ -16,7 +16,7 @@ function s.initial_effect(c) e2:SetRange(LOCATION_SZONE) e2:SetValue(function(_,re) return re:IsMonsterEffect() end) c:RegisterEffect(e2) - --Search 1 card that mentions "Gold Sarcophagus of Light" + --Search 1 card that mentions "Shining Sarcophagus" local e3=Effect.CreateEffect(c) e3:SetDescription(aux.Stringid(id,0)) e3:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) @@ -112,4 +112,4 @@ function s.tgop(e,tp,eg,ep,ev,re,r,rp) if tc:IsRelateToEffect(e) then Duel.SendtoGrave(tc,REASON_EFFECT) end -end +end \ No newline at end of file diff --git a/official/c80621253.lua b/official/c80621253.lua index f76c71784e..ce5ec3b953 100644 --- a/official/c80621253.lua +++ b/official/c80621253.lua @@ -1,5 +1,5 @@ --マナドゥム・トリッド ---Mannadium Trid +--Mannadium Torrid --Scripted by Satella local s,id=GetID() function s.initial_effect(c) diff --git a/official/c80722024.lua b/official/c80722024.lua index 2210257661..cc9bd4bd2c 100644 --- a/official/c80722024.lua +++ b/official/c80722024.lua @@ -1,5 +1,5 @@ -- メメント・ボーン・パーティー --- Memento Bone Party +--Mementotlan Bone Party -- Scripted by Satellaa local s,id=GetID() function s.initial_effect(c) diff --git a/official/c80738884.lua b/official/c80738884.lua index 2ca97e7517..34e8b1d4ae 100644 --- a/official/c80738884.lua +++ b/official/c80738884.lua @@ -1,5 +1,5 @@ --VS龍帝ノ槍 ---Vanquish Soul - Calamity Kaiser +--Vanquish Soul Calamity Caesar --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) diff --git a/official/c80845034.lua b/official/c80845034.lua index d9444ed7bb..78d8404838 100644 --- a/official/c80845034.lua +++ b/official/c80845034.lua @@ -1,5 +1,5 @@ -- "罪宝狩りの悪魔" --- "The Tainted Treasure Hunter Fiend" +--WANTED: Seeker of Sinful Spoils -- Scripted by Satellaa local s,id=GetID() function s.initial_effect(c) diff --git a/official/c81549048.lua b/official/c81549048.lua index 6a63cf6897..6a09fec649 100644 --- a/official/c81549048.lua +++ b/official/c81549048.lua @@ -1,9 +1,9 @@ --竜華三界流転 ---Apodrakosis Eternal Recurrence of Trailokya +--Ryu-Ge Rivalry --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) - --Special Summon 1 "Apodrakosis" monster from your hand, Deck, or GY, but return it to the hand during the End Phase + --Special Summon 1 "Ryu-Ge" monster from your hand, Deck, or GY, but return it to the hand during the End Phase local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON+CATEGORY_TOHAND) @@ -14,7 +14,7 @@ function s.initial_effect(c) e1:SetTarget(s.sptg) e1:SetOperation(s.spop) c:RegisterEffect(e1) - --Place 1 "Apodrakosis" Continuous Spell you control or in your GY or banishment on the bottom of the Deck, then draw 1 card + --Place 1 "Ryu-Ge" Continuous Spell you control or in your GY or banishment on the bottom of the Deck, then draw 1 card local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_TODECK+CATEGORY_DRAW) diff --git a/official/c81677154.lua b/official/c81677154.lua index 8c90fae63c..c3702b4a2e 100644 --- a/official/c81677154.lua +++ b/official/c81677154.lua @@ -1,9 +1,9 @@ --- メメント・シーホース --- Memento Tatsunootoshigo --- Scripted by Satellaa +--メメント・シーホース +--Mementotlan Tatsunootoshigo +--Scripted by Satellaa local s,id=GetID() function s.initial_effect(c) - -- Special Summon itself from the hand + --Special Summon itself from the hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) @@ -14,7 +14,7 @@ function s.initial_effect(c) e1:SetTarget(s.sptg) e1:SetOperation(s.spop) c:RegisterEffect(e1) - -- Send cards from the Deck to the GY with a total Levels equal to or lower than the destroyed monster's original Level + --Send cards from the Deck to the GY with a total Levels equal to or lower than the destroyed monster's original Level local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_DESTROY+CATEGORY_TOGRAVE) diff --git a/official/c8173184.lua b/official/c8173184.lua index 61d66493f0..4c8ec75bf9 100644 --- a/official/c8173184.lua +++ b/official/c8173184.lua @@ -1,5 +1,5 @@ --リペア・ジェネクス・コントローラー ---Repaired Genex Controller +--Repair Genex Controller --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c81756619.lua b/official/c81756619.lua index 13fe18e4ae..7d8ecc7ed5 100644 --- a/official/c81756619.lua +++ b/official/c81756619.lua @@ -1,5 +1,5 @@ --死を謳う魔瞳 ---End-Exalting Morganite +--Succumbing-Song Morganite --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c81878201.lua b/official/c81878201.lua index c4eea701de..7c67389bf5 100644 --- a/official/c81878201.lua +++ b/official/c81878201.lua @@ -1,5 +1,5 @@ --アビスティング-トリアイナ ---Abyss-sting of Triaina +--Abyss-sting Triaina --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c82135803.lua b/official/c82135803.lua index dcf673f6f8..ceeadc6dfb 100644 --- a/official/c82135803.lua +++ b/official/c82135803.lua @@ -1,5 +1,5 @@ --刻まれし魔ディエスイレ ---Fiendsmith Dies Irae +--Fiendsmith's Desirae --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c82190203.lua b/official/c82190203.lua index c3b917b301..4f220489ed 100644 --- a/official/c82190203.lua +++ b/official/c82190203.lua @@ -1,5 +1,5 @@ --光翼の竜 ---The Light-Winged Dragon +--Wings of Light --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) diff --git a/official/c82286798.lua b/official/c82286798.lua index c76400b4be..c79512996d 100644 --- a/official/c82286798.lua +++ b/official/c82286798.lua @@ -1,5 +1,5 @@ --クシャトリラ・アクストラ ---Kashtira Axtra +--Kashtira Akstra --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c82570174.lua b/official/c82570174.lua index 99c775362b..8dc51a16b4 100644 --- a/official/c82570174.lua +++ b/official/c82570174.lua @@ -1,5 +1,5 @@ --燦幻昇龍バイデント・ドラギオン ---Sangen Risedragon Bident Dragion +--Sangenpai Bident Dragion --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c82661630.lua b/official/c82661630.lua index 7b1c12d6fa..ab1331a606 100644 --- a/official/c82661630.lua +++ b/official/c82661630.lua @@ -1,16 +1,16 @@ --登竜華恐巄門 ---Apodrakosis Ascension Gate of Dinocrag +--Ryu-Ge Realm - Dino Domains --scripted by Naim local s,id=GetID() function s.initial_effect(c) - --You can only control 1 "Apodrakosis Ascension Gate of Dinocrag" + --You can only control 1 "Ryu-Ge Realm - Dino Domains" c:SetUniqueOnField(1,0,id) --Activate local e0=Effect.CreateEffect(c) e0:SetType(EFFECT_TYPE_ACTIVATE) e0:SetCode(EVENT_FREE_CHAIN) c:RegisterEffect(e0) - --"Apodrakosis" monsters you control gain 300 ATK + --"Ryu-Ge" monsters you control gain 300 ATK local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetCode(EFFECT_UPDATE_ATTACK) @@ -32,7 +32,7 @@ function s.initial_effect(c) e2:SetCost(s.negcost) e2:SetTarget(s.negtg) e2:SetOperation(function(e,tp,eg,ep,ev) Duel.NegateActivation(ev) end) - --Grant the above effect to "Apodrakosis" Pendulum Monsters and Level 10 or higher monsters whose original Type is Dinosaur you control + --Grant the above effect to "Ryu-Ge" Pendulum Monsters and Level 10 or higher monsters whose original Type is Dinosaur you control local e3=Effect.CreateEffect(c) e3:SetType(EFFECT_TYPE_FIELD+EFFECT_TYPE_GRANT) e3:SetRange(LOCATION_SZONE) diff --git a/official/c83008724.lua b/official/c83008724.lua index 5c80f29a8f..9194a028cd 100644 --- a/official/c83008724.lua +++ b/official/c83008724.lua @@ -1,5 +1,5 @@ --おすすめ軍貫握り ---Gunkan Suship Chef's Choice +--Gunkan Suship Catch-of-the-Day --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c83308376.lua b/official/c83308376.lua index 59588b768a..ad0d8f23cd 100644 --- a/official/c83308376.lua +++ b/official/c83308376.lua @@ -1,5 +1,5 @@ --赫聖の相剣 ---Swordsoul of Blazing Awakening +--Swordsoul Punishment --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c83334932.lua b/official/c83334932.lua index 629b7a9862..8a9b9df36a 100644 --- a/official/c83334932.lua +++ b/official/c83334932.lua @@ -1,9 +1,9 @@ --- 超重武者バイ-Q --- Superheavy Samurai Bike --- Scripted by Satella +--超重武者バイ-Q +--Superheavy Samurai Motorbike +--Scripted by Satella local s,id=GetID() function s.initial_effect(c) - -- Add 1 "Superheavy Samurai" from the Deck to the hand + --Add 1 "Superheavy Samurai" from the Deck to the hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH) @@ -15,7 +15,7 @@ function s.initial_effect(c) e1:SetTarget(s.thtg) e1:SetOperation(s.thop) c:RegisterEffect(e1) - -- Increase the level of a Machine monster by 2 + --Increase the level of a Machine monster by 2 local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_LVCHANGE) diff --git a/official/c83793721.lua b/official/c83793721.lua index 001a03e5a6..b98c841e67 100644 --- a/official/c83793721.lua +++ b/official/c83793721.lua @@ -1,5 +1,5 @@ --幻奏の華歌神フラワリング・エトワール ---Flowering Etoile the Melodious Grand Choir +--Flowering Etoile the Melodious Magnificat --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) diff --git a/official/c83819309.lua b/official/c83819309.lua index fc7c5480ae..e6eebefaaf 100644 --- a/official/c83819309.lua +++ b/official/c83819309.lua @@ -1,5 +1,5 @@ --冷える火 ---Freezing Fire +--Cooling Embers --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c84079032.lua b/official/c84079032.lua index 08e850003d..dbdb922c36 100644 --- a/official/c84079032.lua +++ b/official/c84079032.lua @@ -1,5 +1,5 @@ --面子蝙蝠 ---Menkoumori +--Bettan Bat --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) diff --git a/official/c84121302.lua b/official/c84121302.lua index 61621138a4..e05b31c234 100644 --- a/official/c84121302.lua +++ b/official/c84121302.lua @@ -1,5 +1,5 @@ --リブロマンサー・オリジン ---Libromancer Origin +--Libromancer Origin Story --scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c84631951.lua b/official/c84631951.lua index 8b0e8910a3..93de2c1e26 100644 --- a/official/c84631951.lua +++ b/official/c84631951.lua @@ -1,5 +1,5 @@ --ディノベーダー・ドクス ---Dinovader Docus +--Dinovatus Docus --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c84635192.lua b/official/c84635192.lua index 3e23f92946..4d23f88e92 100644 --- a/official/c84635192.lua +++ b/official/c84635192.lua @@ -1,5 +1,5 @@ --ツルプルプルン ---Turu-Purupurun +--Tsuru-Puru-Purun --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c84755744.lua b/official/c84755744.lua index 08e2a91436..64fd94cae8 100644 --- a/official/c84755744.lua +++ b/official/c84755744.lua @@ -1,5 +1,5 @@ --転生炎獣ティガー ---Salamangreat Teeger +--Salamangreat Tiger --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c85123771.lua b/official/c85123771.lua index b914c98828..c3781c614e 100644 --- a/official/c85123771.lua +++ b/official/c85123771.lua @@ -1,5 +1,5 @@ --ゴブリン降下部隊 ---Goblin Paratrooper Squad +--Goblin Freefall Squad --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c85314178.lua b/official/c85314178.lua index 8482daa727..419c085e37 100644 --- a/official/c85314178.lua +++ b/official/c85314178.lua @@ -1,5 +1,5 @@ --祈りの女王-コスモクイーン ---Cosmo Queen, the Queen of Prayers +--Cosmo Queen the Queen of Prayers --Scripted by The Razgriz local s,id=GetID() function s.initial_effect(c) diff --git a/official/c85401123.lua b/official/c85401123.lua index 47ef8afc90..b9734da819 100644 --- a/official/c85401123.lua +++ b/official/c85401123.lua @@ -1,5 +1,5 @@ --モコモッコ ---Fluffyfluff +--Mokomoko --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c85520170.lua b/official/c85520170.lua index d0555a0c3a..3297340c06 100644 --- a/official/c85520170.lua +++ b/official/c85520170.lua @@ -1,5 +1,5 @@ --くず鉄の神像 ---Scrap-Iron Idol +--Scrap-Iron Sacred Statue --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c85753549.lua b/official/c85753549.lua index b7223f5426..23c8f7bd46 100644 --- a/official/c85753549.lua +++ b/official/c85753549.lua @@ -1,5 +1,5 @@ --月牙龍-クレセント・ドラゴン ---Crescent Dragon - Mikazukinoyaiba +--Mikazukinoyaiba, the Moon Fang Dragon --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c8633261.lua b/official/c8633261.lua index bb4f0eaf0b..ca51bd0053 100644 --- a/official/c8633261.lua +++ b/official/c8633261.lua @@ -1,5 +1,5 @@ --アイス・ライゼオル ---Ice Raizeol +--Ice Ryzeal --scripted by Naim local s,id=GetID() function s.initial_effect(c) @@ -15,7 +15,7 @@ function s.initial_effect(c) e1:SetTarget(s.selfsptg) e1:SetOperation(s.selfspop) c:RegisterEffect(e1) - --Special Summon 1 "Raizeol" monster from your Deck + --Special Summon 1 "Ryzeal" monster from your Deck local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_SPECIAL_SUMMON) @@ -77,4 +77,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp) if #g>0 then Duel.SpecialSummon(g,0,tp,tp,false,false,POS_FACEUP) end -end +end \ No newline at end of file diff --git a/official/c86346363.lua b/official/c86346363.lua index a51de96ca9..e96f357f93 100644 --- a/official/c86346363.lua +++ b/official/c86346363.lua @@ -1,5 +1,5 @@ --タイム・リワインダー ---Time Rewinder +--Time Reloader --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c8653757.lua b/official/c8653757.lua index 76e0adf28d..9cff2a1f5b 100644 --- a/official/c8653757.lua +++ b/official/c8653757.lua @@ -1,5 +1,5 @@ --フォトン・リタデイション ---Photon Deceleration +--Photon Timestop --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) diff --git a/official/c86682165.lua b/official/c86682165.lua index ebe76af3fb..d4f0b0764b 100644 --- a/official/c86682165.lua +++ b/official/c86682165.lua @@ -1,12 +1,12 @@ --- 氷水啼エジル・ギュミル --- Icejade Aegirine Gymir --- Scripted by Hatter +--氷水啼エジル・ギュミル +--Icejade Gymir Aegirine +--Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() - -- 1 WATER Tuner + 1+ non-Tuner monsters + --1 WATER Tuner + 1+ non-Tuner monsters Synchro.AddProcedure(c,aux.FilterBoolFunctionEx(Card.IsAttribute,ATTRIBUTE_WATER),1,1,Synchro.NonTuner(nil),1,99) - -- Apply monster protection + --Apply monster protection local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_REMOVE) @@ -18,7 +18,7 @@ function s.initial_effect(c) e1:SetTarget(s.immtg) e1:SetOperation(s.immop) c:RegisterEffect(e1) - -- Special Summon this card + --Special Summon this card local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,1)) e1:SetCategory(CATEGORY_SPECIAL_SUMMON) @@ -90,4 +90,4 @@ function s.spop(e,tp,eg,ep,ev,re,r,rp) if c:IsRelateToEffect(e) then Duel.SpecialSummon(c,0,tp,tp,false,false,POS_FACEUP) end -end +end \ No newline at end of file diff --git a/official/c87451661.lua b/official/c87451661.lua index 3cbe1ffbee..945e6ab7bb 100644 --- a/official/c87451661.lua +++ b/official/c87451661.lua @@ -1,5 +1,5 @@ -- スカーレッド・デーモン --- Scar-Red Dragon Archfiend +--Scarred Dragon Archfiend local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() diff --git a/official/c87462901.lua b/official/c87462901.lua index 283fdf2a1f..b868c4dbf2 100644 --- a/official/c87462901.lua +++ b/official/c87462901.lua @@ -1,5 +1,5 @@ --幻蝋館の使者 ---Envoy of the Wax State +--Emissary from the House of Wax --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c87778106.lua b/official/c87778106.lua index 28f989a480..f8e6d38d3e 100644 --- a/official/c87778106.lua +++ b/official/c87778106.lua @@ -1,5 +1,5 @@ --Recette de Poisson~魚料理のレシピ~ ---Recette de Poisson - Fish Recipe +--Recette de Poisson (Fish Recipe) --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c87804747.lua b/official/c87804747.lua index 116620193d..c33b8a658c 100644 --- a/official/c87804747.lua +++ b/official/c87804747.lua @@ -1,6 +1,6 @@ --- 完全態・グレート・インセクト --- Perfect Great Insect --- Scripted by Hatter +--完全態・グレート・インセクト +--Ultimate Great Insect +--Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() diff --git a/official/c87955518.lua b/official/c87955518.lua index 363ce1eb93..f7748be57d 100644 --- a/official/c87955518.lua +++ b/official/c87955518.lua @@ -1,5 +1,5 @@ --Recette de Spécialité~料理長自慢のレシピ~ ---Recette de Spécialité - Chef's Specialty Recipe +--Chef's Special Recipe --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c88284599.lua b/official/c88284599.lua index 84c3529063..98c465faf8 100644 --- a/official/c88284599.lua +++ b/official/c88284599.lua @@ -1,5 +1,5 @@ --粛声の竜賢聖サウラヴィス ---Sauravis, the Sagely Silenforcer Dragon +--Sauravis, Dragon Sage of the Voiceless Voice --Ashaki local s,id=GetID() function s.initial_effect(c) diff --git a/official/c88346805.lua b/official/c88346805.lua index ff74c7602d..f7da351214 100644 --- a/official/c88346805.lua +++ b/official/c88346805.lua @@ -1,5 +1,5 @@ --切り番 ---Kiriban +--You're Finished --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c88654892.lua b/official/c88654892.lua index a00015b01b..979bf095c4 100644 --- a/official/c88654892.lua +++ b/official/c88654892.lua @@ -1,5 +1,5 @@ --突然回帰 ---Back Mutation +--Mutamorphosis --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c88695895.lua b/official/c88695895.lua index f53566d316..8f8cbd2359 100644 --- a/official/c88695895.lua +++ b/official/c88695895.lua @@ -1,5 +1,5 @@ --罪宝の咎人 ---Sinful Spoils Offenders +--Guilt of the Sinful Spoils --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c89016236.lua b/official/c89016236.lua index 662af9ef26..6308c4457e 100644 --- a/official/c89016236.lua +++ b/official/c89016236.lua @@ -1,5 +1,5 @@ --ポワレティス・ド・ヌーベルズ ---Poêlétis de Nouvelles +--Poeltis de Nouvelles --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c89023486.lua b/official/c89023486.lua index fbb91567d0..a38c2cb123 100644 --- a/official/c89023486.lua +++ b/official/c89023486.lua @@ -1,5 +1,5 @@ --原罪宝-スネークアイ ---The Original Tainted Treasure - Snake-Eye +--Original Sinful Spoils - Snake-Eye --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c89569453.lua b/official/c89569453.lua index 13b4cb172d..e140d362d5 100644 --- a/official/c89569453.lua +++ b/official/c89569453.lua @@ -1,5 +1,5 @@ --断絶の落とし穴 ---Wipeout Trap Hole +--Banishing Trap Hole --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c8963089.lua b/official/c8963089.lua index 788318d193..548f75721c 100644 --- a/official/c8963089.lua +++ b/official/c8963089.lua @@ -1,5 +1,5 @@ --黎銘機ヘオスヴァローグ ---Eosvarog, Forger of the Dawn +--Heosvarog the Mechanical Dawn --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c89776023.lua b/official/c89776023.lua index 78c9bee481..4ec42b100f 100644 --- a/official/c89776023.lua +++ b/official/c89776023.lua @@ -1,5 +1,5 @@ --エヴォルド・フォリス ---Evoltile Phoris +--Evoltile Pholis --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c89809665.lua b/official/c89809665.lua index 74f9077e3a..2f70175034 100644 --- a/official/c89809665.lua +++ b/official/c89809665.lua @@ -1,5 +1,5 @@ --焔聖騎士-テュルパン ---Infernoble Knight - Turpin +--Infernoble Knight Turpin --Scripted by Larry126 local s,id=GetID() function s.initial_effect(c) diff --git a/official/c92487128.lua b/official/c92487128.lua index 8de6e08b4a..ebd1d3e8e0 100644 --- a/official/c92487128.lua +++ b/official/c92487128.lua @@ -1,5 +1,5 @@ --創星竜華-光巴 ---Guangba, Luminous Apodrakosis of Starforge +--Sosei Ryu-Ge Mistva --Scripted by Eerie Code local s,id=GetID() function s.initial_effect(c) @@ -8,9 +8,9 @@ function s.initial_effect(c) Pendulum.AddProcedure(c) --Must be Special Summoned by its own effect c:AddMustBeSpecialSummoned() - --You can only Special Summon "Guangba, Luminous Apodrakosis of Starforge(s)" once per turn + --You can only Special Summon "Sosei Ryu-Ge Mistva(s)" once per turn c:SetSPSummonOnce(id) - --Add 1 "Apodrakosis" card from your Deck to your hand, except a Pendulum Monster, then destroy this card + --Add 1 "Ryu-Ge" card from your Deck to your hand, except a Pendulum Monster, then destroy this card local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_TOHAND+CATEGORY_SEARCH+CATEGORY_DESTROY) @@ -20,7 +20,7 @@ function s.initial_effect(c) e1:SetTarget(s.thtg) e1:SetOperation(s.thop) c:RegisterEffect(e1) - --Tribute 1 Level 10 "Apodrakosis" monster, and if you do, Special Summon this card + --Tribute 1 Level 10 "Ryu-Ge" monster, and if you do, Special Summon this card local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_RELEASE+CATEGORY_SPECIAL_SUMMON+CATEGORY_DESTROY) diff --git a/official/c92962242.lua b/official/c92962242.lua index d50bb8b392..703967c3b0 100644 --- a/official/c92962242.lua +++ b/official/c92962242.lua @@ -1,5 +1,5 @@ -- 重の忍者-磁翁 --- Jio the Gravity Ninja +--Jioh the Gravity Ninja -- Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c93509766.lua b/official/c93509766.lua index fb5e5dedb3..d8e804d4b6 100644 --- a/official/c93509766.lua +++ b/official/c93509766.lua @@ -1,16 +1,16 @@ --恐巄竜華-㟴巴 ---Kuaiba, Rugged Apodrakosis of Dinocrag +--Kyoro Ryu-Ge Kaiva --Scripted by Satellaa local s,id=GetID() function s.initial_effect(c) - --Add 1 "Apodrakosis Ascension Gate of Dinocrag" from your Deck to your hand + --Add 1 "Ryu-Ge Realm - Dino Domains" from your Deck to your hand local e1=Effect.CreateEffect(c) e1:SetDescription(aux.Stringid(id,0)) e1:SetCategory(CATEGORY_SEARCH+CATEGORY_TOHAND) e1:SetType(EFFECT_TYPE_IGNITION) e1:SetRange(LOCATION_HAND) e1:SetCountLimit(1,id) - e1:SetCost(s.thcost) + e1:SetCost(aux.SelfToDeckCost) e1:SetTarget(s.thtg) e1:SetOperation(s.thop) c:RegisterEffect(e1) @@ -48,7 +48,7 @@ function s.initial_effect(c) e3:SetOperation(s.desop) c:RegisterEffect(e3) end -s.listed_names={82661630} --"Apodrakosis Ascension Gate of Dinocrag" +s.listed_names={82661630} --"Ryu-Ge Realm - Dino Domains" function s.checkop(e,tp,eg,ep,ev,re,r,rp) for ct=1,#eg do Duel.RegisterFlagEffect(0,id,RESET_PHASE|PHASE_END,0,1) diff --git a/official/c9396662.lua b/official/c9396662.lua index 6ce297b58c..89bab6c535 100644 --- a/official/c9396662.lua +++ b/official/c9396662.lua @@ -1,5 +1,5 @@ --氷結界の鏡魔師 ---Mirror Magic Master of the Ice Barrier +--Mirror Mage of the Ice Barrier --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c95454996.lua b/official/c95454996.lua index a2e15e80bc..7fabbcc274 100644 --- a/official/c95454996.lua +++ b/official/c95454996.lua @@ -1,10 +1,10 @@ --M∀LICE<Q>WHITE BINDER ---M∀LICE WHITE BINDER +--Maliss White Binder --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) c:EnableReviveLimit() - --Link Summon procedure: 2+ monsters, including a "M∀LICE" monster + --Link Summon procedure: 2+ monsters, including a "Maliss" monster Link.AddProcedure(c,nil,2,3,s.lcheck) --Banish up to 3 cards from either GY local e1=Effect.CreateEffect(c) @@ -17,7 +17,7 @@ function s.initial_effect(c) e1:SetTarget(s.rmtg) e1:SetOperation(s.rmop) c:RegisterEffect(e1) - --Set 1 "M∀LICE" Trap from your Deck or GY + --Set 1 "Maliss" Trap from your Deck or GY local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,1)) e2:SetCategory(CATEGORY_LEAVE_GRAVE) @@ -35,7 +35,7 @@ function s.initial_effect(c) e3:SetProperty(EFFECT_FLAG_DELAY) e3:SetCode(EVENT_REMOVE) e3:SetCountLimit(1,{id,2}) - e3:SetCost(s.spcost) + e3:SetCost(aux.PayLPCost(900)) e3:SetTarget(s.sptg) e3:SetOperation(s.spop) c:RegisterEffect(e3) @@ -74,10 +74,6 @@ function s.setop(e,tp,eg,ep,ev,re,r,rp) Duel.SSet(tp,g) end end -function s.spcost(e,tp,eg,ep,ev,re,r,rp,chk) - if chk==0 then return Duel.CheckLPCost(tp,900) end - Duel.PayLPCost(tp,900) -end function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk) local c=e:GetHandler() if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 diff --git a/official/c95784714.lua b/official/c95784714.lua index 4710b6422b..1977d3b9bb 100644 --- a/official/c95784714.lua +++ b/official/c95784714.lua @@ -1,5 +1,5 @@ --彷徨える幽霊船 ---Flying Mary +--Flying Mary, the Wandering Ghost Ship --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c9597987.lua b/official/c9597987.lua index 78a59b7607..e252fc49f4 100644 --- a/official/c9597987.lua +++ b/official/c9597987.lua @@ -1,5 +1,5 @@ -- 天地晦冥 --- A World Shrouded in Darkness +--Tenchi Kaimei -- Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c96030710.lua b/official/c96030710.lua index 8bc8e15c66..01de038d73 100644 --- a/official/c96030710.lua +++ b/official/c96030710.lua @@ -1,5 +1,5 @@ --竜騎士アトリィ ---Centur-Ion Atry +--Centur-Ion Atrii --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c96235944.lua b/official/c96235944.lua index 5881a306c1..584dfcc04f 100644 --- a/official/c96235944.lua +++ b/official/c96235944.lua @@ -1,5 +1,5 @@ --煉獄の決界 ---Void Barrier +--Void Breach --Scripted by edo9300 local s,id=GetID() function s.initial_effect(c) diff --git a/official/c9627468.lua b/official/c9627468.lua index 7094006b19..016c280382 100644 --- a/official/c9627468.lua +++ b/official/c9627468.lua @@ -1,5 +1,5 @@ -- 甲虫合体ゼクスタッガー --- Beetle Amalgamaton Zekstagger +--Humongous Hive Hegemon - Zexstagger -- Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c96352712.lua b/official/c96352712.lua index 672da8547c..36f0751ccc 100644 --- a/official/c96352712.lua +++ b/official/c96352712.lua @@ -1,5 +1,5 @@ --誇大化 ---Egomorph +--Overexaggeration --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c96402918.lua b/official/c96402918.lua index f6cb484361..1579507ac8 100644 --- a/official/c96402918.lua +++ b/official/c96402918.lua @@ -1,5 +1,5 @@ --氷霊山の龍祖 ランセア ---Lancea, Dragonic Ancestor of the Ice Spirit Mountain +--Lancea, Ancestral Dragon of the Ice Mountain --Scripted by fiftyfour local s,id=GetID() function s.initial_effect(c) diff --git a/official/c96676583.lua b/official/c96676583.lua index 710d065fc6..8cf3ec801b 100644 --- a/official/c96676583.lua +++ b/official/c96676583.lua @@ -1,9 +1,9 @@ --M∀LICE<P>Cheshire Cat ---M∀LICE Cheshire Cat +--Maliss

Chessy Cat --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) - --Any monster destroyed by battle with a "M∀LICE" Link Monster that points to this card is banished + --Any monster destroyed by battle with a "Maliss" Link Monster that points to this card is banished local e1=Effect.CreateEffect(c) e1:SetType(EFFECT_TYPE_FIELD) e1:SetProperty(EFFECT_FLAG_IGNORE_IMMUNE) @@ -13,7 +13,7 @@ function s.initial_effect(c) e1:SetValue(LOCATION_REMOVED) e1:SetTarget(s.linkfilter) c:RegisterEffect(e1) - --Banish 1 "M∀LICE" card from your hand + --Banish 1 "Maliss" card from your hand local e2=Effect.CreateEffect(c) e2:SetDescription(aux.Stringid(id,0)) e2:SetCategory(CATEGORY_REMOVE+CATEGORY_DRAW) @@ -31,7 +31,7 @@ function s.initial_effect(c) e3:SetProperty(EFFECT_FLAG_DELAY) e3:SetCode(EVENT_REMOVE) e3:SetCountLimit(1,{id,1}) - e3:SetCost(s.spcost) + e3:SetCost(aux.PayLPCost(300)) e3:SetTarget(s.sptg) e3:SetOperation(s.spop) c:RegisterEffect(e3) @@ -57,10 +57,6 @@ function s.rmop(e,tp,eg,ep,ev,re,r,rp) Duel.Draw(tp,2,REASON_EFFECT) end end -function s.spcost(e,tp,eg,ep,ev,re,r,rp,chk) - if chk==0 then return Duel.CheckLPCost(tp,300) end - Duel.PayLPCost(tp,300) -end function s.sptg(e,tp,eg,ep,ev,re,r,rp,chk) local c=e:GetHandler() if chk==0 then return Duel.GetLocationCount(tp,LOCATION_MZONE)>0 diff --git a/official/c9674034.lua b/official/c9674034.lua index d6f0ee8b37..36d99be6f1 100644 --- a/official/c9674034.lua +++ b/official/c9674034.lua @@ -1,5 +1,5 @@ --スネークアイ・エクセル ---Snake-Eye Excel +--Snake-Eye Ash --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c96795312.lua b/official/c96795312.lua index a5b8ff3600..4b4b5f2c2d 100644 --- a/official/c96795312.lua +++ b/official/c96795312.lua @@ -1,5 +1,5 @@ --武の賢者-アーカス ---War Magus - Aakas +--Sage of Strength - Akash --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c9709452.lua b/official/c9709452.lua index 41e620bafd..9078ebdafc 100644 --- a/official/c9709452.lua +++ b/official/c9709452.lua @@ -1,5 +1,5 @@ --烈日の騎士ガイアブレイズ ---Gaiablaze the Force of Blazing Sun +--Gaia Blaze, the Force of the Sun --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c97223101.lua b/official/c97223101.lua index 4a407c206f..6eb5d19903 100644 --- a/official/c97223101.lua +++ b/official/c97223101.lua @@ -1,5 +1,5 @@ --BBS ---BBS - Be Back Site +--That's 10! --scripted by pyrQ local s,id=GetID() local COUNTER_ACCESS=0x212 diff --git a/official/c97864322.lua b/official/c97864322.lua index e6b1c27fd5..ae9f2abef1 100644 --- a/official/c97864322.lua +++ b/official/c97864322.lua @@ -1,5 +1,5 @@ --シャルル大帝 ---Charlemagne +--Emperor Charles the Great --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c98007437.lua b/official/c98007437.lua index 512b5771b9..6ce37a5a43 100644 --- a/official/c98007437.lua +++ b/official/c98007437.lua @@ -1,5 +1,5 @@ --鎧騎士竜-ナイト・アームド・ドラゴン- ---Knight Armed Dragon +--Knight Armed Dragon, the Armored Knight Dragon --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c98167225.lua b/official/c98167225.lua index 0c231df3cb..c208cd16a7 100644 --- a/official/c98167225.lua +++ b/official/c98167225.lua @@ -1,5 +1,5 @@ --創神のヴァルモニカ ---Vaalmonica Creator +--Vaalmonica Creation --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c98385955.lua b/official/c98385955.lua index 06e5a8edee..8d62a5b2a0 100644 --- a/official/c98385955.lua +++ b/official/c98385955.lua @@ -1,5 +1,5 @@ --白き森のシルヴィ ---Silve of the White Forest +--Silvy of the White Forest --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c98567237.lua b/official/c98567237.lua index 042d7ab681..3bc718b235 100644 --- a/official/c98567237.lua +++ b/official/c98567237.lua @@ -1,5 +1,5 @@ --刻まれし魔の詠聖 ---Fiendsmith Tractus +--Fiendsmith's Tract --scripted by pyrQ local s,id=GetID() function s.initial_effect(c) diff --git a/official/c98986900.lua b/official/c98986900.lua index 61165780ac..c0338d7303 100644 --- a/official/c98986900.lua +++ b/official/c98986900.lua @@ -1,5 +1,5 @@ --セレマテック・クラティス ---Thelematech Cratis +--Thelematech Clatis --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c99289828.lua b/official/c99289828.lua index 10b12f0099..17e67e2771 100644 --- a/official/c99289828.lua +++ b/official/c99289828.lua @@ -1,5 +1,5 @@ --白き森のいいつたえ ---Legend of the White Forest +--Tales of the White Forest --Scripted by Hatter local s,id=GetID() function s.initial_effect(c) diff --git a/official/c99529628.lua b/official/c99529628.lua index 8aa4e06fae..f49760d31f 100644 --- a/official/c99529628.lua +++ b/official/c99529628.lua @@ -1,5 +1,5 @@ --ゴーティスの朧キーフ ---Kiif, Haze of the Ghoti +--Keaf, Murk of the Ghoti --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c99748883.lua b/official/c99748883.lua index cfd62138ca..d8887caa9f 100644 --- a/official/c99748883.lua +++ b/official/c99748883.lua @@ -1,5 +1,5 @@ --流星連打-シロクロイド ---Meteorush - Blackwhiteroid +--Meteor Rush - Monochroid --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c99801464.lua b/official/c99801464.lua index b4d2e1953b..6a1b145324 100644 --- a/official/c99801464.lua +++ b/official/c99801464.lua @@ -1,5 +1,5 @@ --銀翼のAXE-サリー ---Sari of the Silverwinge Axe +--Sari of the Silverwing Axe --scripted by Naim local s,id=GetID() function s.initial_effect(c) diff --git a/official/c99989863.lua b/official/c99989863.lua index 4a9edefcc7..20fdefaee7 100644 --- a/official/c99989863.lua +++ b/official/c99989863.lua @@ -1,5 +1,5 @@ --刻まれし魔の楽園 ---Fiendsmith in Paradisum +--Fiendsmith in Paradise --scripted by pyrQ local s,id=GetID() function s.initial_effect(c)