33-- scripted by pyrQ
44local s ,id = GetID ()
55function s .initial_effect (c )
6- -- When this card is activated: You can add 1 "Medius the Innocent " from your Deck to your hand
6+ -- When this card is activated: You can add 1 "Medius the Pure " from your Deck to your hand
77 local e1 = Effect .CreateEffect (c )
88 e1 :SetDescription (aux .Stringid (id ,0 ))
99 e1 :SetCategory (CATEGORY_TOHAND + CATEGORY_SEARCH )
@@ -12,7 +12,7 @@ function s.initial_effect(c)
1212 e1 :SetCountLimit (1 ,id ,EFFECT_COUNT_CODE_OATH )
1313 e1 :SetOperation (s .activate )
1414 c :RegisterEffect (e1 )
15- -- Make 1 face-up monster you control able to be treated as an "Artmegia " monster if used as Fusion Material this turn
15+ -- Make 1 face-up monster you control able to be treated as an "Artmage " monster if used as Fusion Material this turn
1616 local e2 = Effect .CreateEffect (c )
1717 e2 :SetDescription (aux .Stringid (id ,1 ))
1818 e2 :SetType (EFFECT_TYPE_IGNITION )
@@ -22,7 +22,7 @@ function s.initial_effect(c)
2222 e2 :SetTarget (s .fusmattg )
2323 e2 :SetOperation (s .fusmatop )
2424 c :RegisterEffect (e2 )
25- -- If "Artmegia the Academy City of Divine Arts" you control would be destroyed by card effect, you can send this card to the GY instead
25+ -- If "Artmage Academic Arcane Arts Acropolis " you control would be destroyed by card effect, you can send this card to the GY instead
2626 local e3 = Effect .CreateEffect (c )
2727 e3 :SetType (EFFECT_TYPE_FIELD + EFFECT_TYPE_CONTINUOUS )
2828 e3 :SetCode (EFFECT_DESTROY_REPLACE )
@@ -32,10 +32,10 @@ function s.initial_effect(c)
3232 e3 :SetOperation (function (e ) Duel .SendtoGrave (e :GetHandler (),REASON_EFFECT |REASON_REPLACE ) end )
3333 c :RegisterEffect (e3 )
3434end
35- s .listed_names = {CARD_MEDIUS_THE_INNOCENT ,74733322 } -- "Artmegia the Academy City of Divine Arts"
36- s .listed_series = {SET_ARTMEGIA }
35+ s .listed_names = {CARD_MEDIUS_THE_PURE ,74733322 } -- "Artmage Academic Arcane Arts Acropolis "
36+ s .listed_series = {SET_ARTMAGE }
3737function s .thfilter (c )
38- return c :IsCode (CARD_MEDIUS_THE_INNOCENT ) and c :IsAbleToHand ()
38+ return c :IsCode (CARD_MEDIUS_THE_PURE ) and c :IsAbleToHand ()
3939end
4040function s .activate (e ,tp ,eg ,ep ,ev ,re ,r ,rp )
4141 if Duel .IsExistingMatchingCard (s .thfilter ,tp ,LOCATION_DECK ,0 ,1 ,nil )
5656function s .fusmatop (e ,tp ,eg ,ep ,ev ,re ,r ,rp )
5757 local tc = Duel .GetFirstTarget ()
5858 if tc :IsRelateToEffect (e ) and tc :IsFaceup () then
59- -- It can be treated as an "Artmegia " monster if used as Fusion Material this turn
59+ -- It can be treated as an "Artmage " monster if used as Fusion Material this turn
6060 local e1 = Effect .CreateEffect (e :GetHandler ())
6161 e1 :SetDescription (aux .Stringid (id ,3 ))
6262 e1 :SetType (EFFECT_TYPE_SINGLE )
6363 e1 :SetProperty (EFFECT_FLAG_CANNOT_DISABLE + EFFECT_FLAG_CLIENT_HINT )
6464 e1 :SetCode (EFFECT_ADD_SETCODE )
65- e1 :SetValue (SET_ARTMEGIA )
65+ e1 :SetValue (SET_ARTMAGE )
6666 e1 :SetOperation (function (scard ,sumtype ,tp ) return (sumtype &MATERIAL_FUSION )> 0 or (sumtype &SUMMON_TYPE_FUSION )> 0 end )
6767 e1 :SetReset (RESETS_STANDARD_PHASE_END )
6868 tc :RegisterEffect (e1 )
0 commit comments