Difference between pages "Module:Redirect hatnote" and "Card Tips:Divine Dragon Lord Felgrand"

From Yugipedia
(Difference between pages)
Jump to: navigation, search
(Updated from sandbox: Migrated p._quote to Module:Hatnote)
 
(Restoring varnish cache from 2023-01-13 14:28:00+00:00)
 
Line 1: Line 1:
--[[
+
{{Navigation}}
-- This module produces a "redirect" hatnote. It looks like this:
 
-- '"X" redirects here. For other uses, see Y.'
 
-- It implements the {{redirect}} template.
 
--]]
 
  
local mHatnote = require('Module:Hatnote')
+
* This card can be [[Searcher|searched]] by "[[Temple of the Kings]]", "[[Dogu]]", "[[Single Purchase]]", "[[Transmodify]]", "[[Painful Escape]]", "[[Shadow's Light]]", "[[Chaos Zone]]", "[[Minerva, Lightsworn Maiden]]", "[[Eclipse Wyvern]]", "[[Dragonic Guard]]", "[[Blue-Eyes Abyss Dragon]]", "[[Dragonic Tactics]]", "[[Starliege Seyfert]]", "[[Bystial Magnamhut]]", "[[Draconnection]]", "[[Ninjitsu Art of Super-Transformation]]", "[[Hieratic Seal of the Heavenly Spheres]]", "[[Hieratic Dragon King of Atum]]", "[[Paladin of Felgrand]]" and "[[Krystal Dragon]]".
local mHatList = require('Module:Hatnote list')
 
local mArguments --lazily initialize
 
local libraryUtil = require('libraryUtil')
 
local checkType = libraryUtil.checkType
 
local checkTypeMulti = libraryUtil.checkTypeMulti
 
  
local p = {}
+
* This card works well in a "[[Blue-Eyes]]" or "[[Red-Eyes]]" Deck due to their abundance of Level 7 and 8 Dragon-Type monsters.
  
--------------------------------------------------------------------------------
+
* "Paladin of Felgrand" can Summon this card from the Graveyard the same turn it equips it with its effect, provided there is another monster on your field and an appropriate target in the Graveyard.
-- Helper functions
 
--------------------------------------------------------------------------------
 
  
local function getTitle(...)
+
* "[[Arkbrave Dragon]]" can summon this card from the Graveyard when it's send there from anywhere. This card then can special summon "Arkbrave Dragon" again, when it destroys opponent monster by battle.
--Calls mw.title.new and returns either a title object, or nil on error
 
local success, titleObj = pcall(mw.title.new, ...)
 
return success and titleObj or nil
 
end
 
  
--------------------------------------------------------------------------------
+
* Equip "[[Tyrant Wing]]" to this card, to activate it second effect up to twice per turn. "[[Tyrant Burst Dragon]]" and "[[Dragon's Fighting Spirit]]" can also be used, allowing you to activate its effect at least three or four times every turn.
-- Main functions
 
--------------------------------------------------------------------------------
 
  
function p.redirect(frame)
+
* Special Summon this card from the Graveyard with "[[Oasis of Dragon Souls]]" to counter "[[Buster Blader (archetype)|Buster Blader]]" decks. Since any monster Special Summoned by "Oasis of Dragon Souls" is treated as [[Wyrm]]-Type, you would be able to activate this card's effect even if your opponent controls a "[[Buster Blader, the Dragon Destroyer Swordsman]]", allowing you to [[banish]] your opponent's "Buster Blader, the Dragon Destroyer Swordsman" or "[[Buster Dragon]]".
mArguments = require('Module:Arguments')
+
* Using cards like "[[Dragon Shrine]]" and "[[Dragon Ravine]]" helps get this card to the graveyard faster to utilize its effects if it were to be special summoned from the graveyard.
local args = mArguments.getArgs(frame, {parentOnly=true})
 
--Get number of redirects
 
local numRedirects = tonumber(frame.args[1]) or 1
 
-- Create the options table.
 
local options = {}
 
options.selfref = args.selfref
 
return p._redirect(args, numRedirects, options)
 
end
 
  
function p._redirect(args, numRedirects, options, currentTitle, redirectTitle, targetTitle)
+
==Traditional Format==
-- Validate the input. Don't bother checking currentTitle, redirectTitle or
+
* This card is effective with or against "[[Royal Oppression]]", since its summoning effect is activated during the [[Damage Step]], during which "Royal Oppression" cannot negate summons.
-- targetTitle, as they are only used in testing.
 
checkType('_redirect', 1, args, 'table')
 
checkType('_redirect', 2, numRedirects, 'number', true)
 
numRedirects = numRedirects or 1
 
checkType('_redirect', 3, options, 'table', true)
 
options = options or {}
 
currentTitle = currentTitle or mw.title.getCurrentTitle()
 
-- Get the table of redirects
 
local redirect = {}
 
for i = 1, numRedirects do
 
-- Return an error if a redirect parameter is missing.
 
if not args[i] then
 
return mHatnote.makeWikitextError(
 
'missing redirect parameter',
 
'Template:Redirect#Errors',
 
args.category
 
)
 
end
 
redirect[i] = args[i]
 
end
 
-- Generate the text.
 
local formattedRedirect = {}
 
for k,v in pairs(redirect) do
 
formattedRedirect[k] = mHatnote.quote(v)
 
end
 
local text = {
 
mHatList.andList(formattedRedirect) .. ' ' .. (#redirect == 1 and 'redirects' or 'redirect') .. ' here.',
 
mHatList._forSee(args, #redirect + 1, {title = redirect[1], extratext = args.text})
 
}
 
text = table.concat(text, ' ')
 
-- Functionality for adding categories
 
local categoryTable = {}
 
local function addCategory(cat)
 
if cat and cat ~= '' then
 
-- Add by index to avoid duplicates
 
categoryTable[string.format('[[Category:%s]]', cat)] = true
 
end
 
end
 
--Generate tracking categories
 
local mhOptions = {}
 
local redirTitle
 
for k,v in pairs(redirect) do
 
-- We don't need a tracking category if the template invocation has been
 
-- copied directly from the docs, or if we aren't in main- or category-space.
 
if not v:find('^REDIRECT%d*$') and v ~= 'TERM' --
 
and currentTitle.namespace == 0 or currentTitle.namespace == 14
 
then
 
redirTitle = redirectTitle or getTitle(v)
 
if not redirTitle or not redirTitle.exists then
 
addCategory('Missing redirects')
 
elseif not redirTitle.isRedirect then
 
if string.find(redirTitle:getContent(), '#invoke:RfD') then
 
addCategory('Articles with redirect hatnotes impacted by RfD')
 
else
 
addCategory('Articles with redirect hatnotes needing review')
 
end
 
else
 
local target = targetTitle or redirTitle.redirectTarget
 
if target and target ~= currentTitle then
 
addCategory('Articles with redirect hatnotes needing review')
 
end
 
end
 
end
 
  
-- Generate the options to pass to [[Module:Hatnote]].
+
==List==
if currentTitle.namespace == 0 and not mhOptions.selfref
+
* Level 7 or 8 Dragon-Type monsters that can be Special Summoned:
and redirTitle and redirTitle.namespace ~= 0
+
:<!--<table class="sortable wikitable smwtable card-list card-query-main"><tbody><tr><th class="Name">Name</th><th class="Japanese-name">Japanese name</th><th class="Primary-type">Primary type</th><th class="Secondary-type">Secondary type</th><th class="[[Attribute]]"><a href="/wiki/Attribute" title="Attribute">Attribute</a></th><th class="[[Level]]"><a href="/wiki/Level" title="Level">Level</a></th><th class="[[Pendulum-Scale|Scale]]"><a href="/wiki/Pendulum_Scale" title="Pendulum Scale">Scale</a></th><th class="[[ATK]]"><a href="/wiki/ATK" title="ATK">ATK</a></th><th class="[[DEF]]"><a href="/wiki/DEF" title="DEF">DEF</a></th></tr><tr class="row-odd" data-row-number="1"><td class="Name smwtype_txt"><a href="/wiki/Absorouter_Dragon" title="Absorouter Dragon">Absorouter Dragon</a></td><td class="Japanese-name smwtype_txt">アブソルーター・ドラゴン</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/DARK" title="DARK">DARK</a></td><td class="[[Level]] smwtype_txt" data-sort-value="7">7</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="1200">1200</td><td class="[[DEF]] smwtype_txt" data-sort-value="2800">2800</td></tr><tr class="row-even" data-row-number="2"><td class="Name smwtype_txt"><a href="/wiki/Accel_Synchro_Stardust_Dragon" title="Accel Synchro Stardust Dragon">Accel Synchro Stardust Dragon</a></td><td class="Japanese-name smwtype_txt">アクセルシンクロ・スターダスト・ドラゴン</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Synchro_Monster" title="Synchro Monster">Synchro Monster</a><br/><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/WIND" title="WIND">WIND</a></td><td class="[[Level]] smwtype_txt" data-sort-value="8">8</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="2500">2500</td><td class="[[DEF]] smwtype_txt" data-sort-value="2000">2000</td></tr><tr class="row-odd" data-row-number="3"><td class="Name smwtype_txt"><a href="/wiki/Albion_the_Branded_Dragon" title="Albion the Branded Dragon">Albion the Branded Dragon</a></td><td class="Japanese-name smwtype_txt"><ruby lang="ja"><rb>烙</rb><rp>(</rp><rt>らく</rt><rp>)</rp></ruby><ruby lang="ja"><rb>印</rb><rp>(</rp><rt>いん</rt><rp>)</rp></ruby><ruby lang="ja"><rb>竜</rb><rp>(</rp><rt>りゅう</rt><rp>)</rp></ruby>アルビオン</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a><br/><a href="/wiki/Fusion_Monster" title="Fusion Monster">Fusion Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/DARK" title="DARK">DARK</a></td><td class="[[Level]] smwtype_txt" data-sort-value="8">8</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="2500">2500</td><td class="[[DEF]] smwtype_txt" data-sort-value="2000">2000</td></tr><tr class="row-even" data-row-number="4"><td class="Name smwtype_txt"><a href="/wiki/Albion_the_Incandescent_Dragon" title="Albion the Incandescent Dragon">Albion the Incandescent Dragon</a></td><td class="Japanese-name smwtype_txt"><ruby lang="ja"><rb>真</rb><rp>(</rp><rt>しん</rt><rp>)</rp></ruby><ruby lang="ja"><rb>炎</rb><rp>(</rp><rt>えん</rt><rp>)</rp></ruby><ruby lang="ja"><rb>竜</rb><rp>(</rp><rt>りゅう</rt><rp>)</rp></ruby>アルビオン</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a><br/><a href="/wiki/Fusion_Monster" title="Fusion Monster">Fusion Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/LIGHT" title="LIGHT">LIGHT</a></td><td class="[[Level]] smwtype_txt" data-sort-value="8">8</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="3000">3000</td><td class="[[DEF]] smwtype_txt" data-sort-value="2500">2500</td></tr><tr class="row-odd" data-row-number="5"><td class="Name smwtype_txt"><a href="/wiki/Albion_the_Shrouded_Dragon" title="Albion the Shrouded Dragon">Albion the Shrouded Dragon</a></td><td class="Japanese-name smwtype_txt"><ruby lang="ja"><rb>黒</rb><rp>(</rp><rt>くろ</rt><rp>)</rp></ruby><ruby lang="ja"><rb>衣</rb><rp>(</rp><rt>ご</rt><rp>)</rp></ruby><ruby lang="ja"><rb>竜</rb><rp>(</rp><rt>りゅう</rt><rp>)</rp></ruby>アルビオン</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/DARK" title="DARK">DARK</a></td><td class="[[Level]] smwtype_txt" data-sort-value="8">8</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="2500">2500</td><td class="[[DEF]] smwtype_txt" data-sort-value="2000">2000</td></tr><tr class="row-even" data-row-number="6"><td class="Name smwtype_txt"><a href="/wiki/Amorphactor_Pain,_the_Imagination_Dracoverlord" title="Amorphactor Pain, the Imagination Dracoverlord">Amorphactor Pain, the Imagination Dracoverlord</a></td><td class="Japanese-name smwtype_txt"><ruby lang="ja"><rb>虚</rb><rp>(</rp><rt>きょ</rt><rp>)</rp></ruby><ruby lang="ja"><rb>竜</rb><rp>(</rp><rt>りゅう</rt><rp>)</rp></ruby><ruby lang="ja"><rb>魔</rb><rp>(</rp><rt>ま</rt><rp>)</rp></ruby><ruby lang="ja"><rb>王</rb><rp>(</rp><rt>おう</rt><rp>)</rp></ruby>アモルファクター<ruby lang="ja"><rb>P</rb><rp>(</rp><rt>サイコ</rt><rp>)</rp></ruby></td><td class="Primary-type smwtype_wpg"><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a><br/><a href="/wiki/Ritual_Monster" title="Ritual Monster">Ritual Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/EARTH" title="EARTH">EARTH</a></td><td class="[[Level]] smwtype_txt" data-sort-value="8">8</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="2950">2950</td><td class="[[DEF]] smwtype_txt" data-sort-value="2500">2500</td></tr><tr class="row-odd" data-row-number="7"><td class="Name smwtype_txt"><a href="/wiki/Amorphage_Goliath" title="Amorphage Goliath">Amorphage Goliath</a></td><td class="Japanese-name smwtype_txt">アモルファージ・イリテュム</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Pendulum_Monster" title="Pendulum Monster">Pendulum Monster</a><br/><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/EARTH" title="EARTH">EARTH</a></td><td class="[[Level]] smwtype_txt" data-sort-value="8">8</td><td class="[[Pendulum-Scale|Scale]] smwtype_num" data-sort-value="5">5</td><td class="[[ATK]] smwtype_txt" data-sort-value="2750">2750</td><td class="[[DEF]] smwtype_txt" data-sort-value="0">0</td></tr><tr class="row-even" data-row-number="8"><td class="Name smwtype_txt"><a href="/wiki/Ancient_Fairy_Dragon" title="Ancient Fairy Dragon">Ancient Fairy Dragon</a></td><td class="Japanese-name smwtype_txt">エンシェント・フェアリー・ドラゴン</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Synchro_Monster" title="Synchro Monster">Synchro Monster</a><br/><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/LIGHT" title="LIGHT">LIGHT</a></td><td class="[[Level]] smwtype_txt" data-sort-value="7">7</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="2100">2100</td><td class="[[DEF]] smwtype_txt" data-sort-value="3000">3000</td></tr><tr class="row-odd" data-row-number="9"><td class="Name smwtype_txt"><a href="/wiki/Ancient_Pixie_Dragon" title="Ancient Pixie Dragon">Ancient Pixie Dragon</a></td><td class="Japanese-name smwtype_txt"><ruby lang="ja"><rb>妖</rb><rp>(</rp><rt>よう</rt><rp>)</rp></ruby><ruby lang="ja"><rb>精</rb><rp>(</rp><rt>せい</rt><rp>)</rp></ruby><ruby lang="ja"><rb>竜</rb><rp>(</rp><rt>りゅう</rt><rp>)</rp></ruby> エンシェント</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Synchro_Monster" title="Synchro Monster">Synchro Monster</a><br/><a href="/wiki/Effect_Monster" title="Effect Monster">Effect Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/DARK" title="DARK">DARK</a></td><td class="[[Level]] smwtype_txt" data-sort-value="7">7</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="2100">2100</td><td class="[[DEF]] smwtype_txt" data-sort-value="3000">3000</td></tr><tr class="row-even" data-row-number="10"><td class="Name smwtype_txt"><a href="/wiki/Anotherverse_Dragon" title="Anotherverse Dragon">Anotherverse Dragon</a></td><td class="Japanese-name smwtype_txt">アナザー・バース・ドラゴン</td><td class="Primary-type smwtype_wpg"><a href="/wiki/Normal_Monster" title="Normal Monster">Normal Monster</a></td><td class="Secondary-type smwtype_wpg"></td><td class="[[Attribute]] smwtype_wpg"><a href="/wiki/LIGHT" title="LIGHT">LIGHT</a></td><td class="[[Level]] smwtype_txt" data-sort-value="8">8</td><td class="[[Pendulum-Scale|Scale]] smwtype_num"></td><td class="[[ATK]] smwtype_txt" data-sort-value="2500">2500</td><td class="[[DEF]] smwtype_txt" data-sort-value="2000">2000</td></tr></tbody></table>--><!--<table class="wikitable smwtable plainlinks card-list card-query-more-links">
then
+
<tbody><tr><td>Showing first 10 results, of 173 total ¦ <a class="external text" href="https://yugipedia.com/wiki/Special:Ask?q=%5B%5BConcept%3ACG+monsters%5D%5D%5B%5BType%3A%3ADragon%5D%5D+%5B%5BLevel%3A%3A7%7C%7C8%5D%5D+%5B%5BSummoning%3A%3ACan+be+Special+Summoned%5D%5D+%5B%5BEnglish+name%3A%3A%21Divine+Dragon+Lord+Felgrand%5D%5D&amp;p=mainlabel%3D-2D&amp;po=%3FEnglish+name+%28linked%29+%3D+Name%0A%3FJapanese+name%0A%0A%3FPrimary+type%0A%3FSecondary+type%0A%3FAttribute+%3D+%5B%5BAttribute%5D%5D%0A%0A%0A%3FStars+string+%3D+%5B%5BLevel%5D%5D%0A%3FPendulum+Scale+%3D+%5B%5BPendulum+Scale%7CScale%5D%5D%0A%3FATK+string+%3D+%5B%5BATK%5D%5D%0A%3FDEF+string+%3D+%5B%5BDEF%5D%5D&amp;format=broadtable&amp;headers=plain&amp;class=sortable+wikitable+smwtable+card-list&amp;sort=%23&amp;order=asc&amp;limit=10&amp;offset=10" rel="nofollow">Show next 10 results</a> ¦ Show first [<a class="external text" href="https://yugipedia.com/wiki/Special:Ask?q=%5B%5BConcept%3ACG+monsters%5D%5D%5B%5BType%3A%3ADragon%5D%5D+%5B%5BLevel%3A%3A7%7C%7C8%5D%5D+%5B%5BSummoning%3A%3ACan+be+Special+Summoned%5D%5D+%5B%5BEnglish+name%3A%3A%21Divine+Dragon+Lord+Felgrand%5D%5D&amp;p=mainlabel%3D-2D&amp;po=%3FEnglish+name+%28linked%29+%3D+Name%0A%3FJapanese+name%0A%0A%3FPrimary+type%0A%3FSecondary+type%0A%3FAttribute+%3D+%5B%5BAttribute%5D%5D%0A%0A%0A%3FStars+string+%3D+%5B%5BLevel%5D%5D%0A%3FPendulum+Scale+%3D+%5B%5BPendulum+Scale%7CScale%5D%5D%0A%3FATK+string+%3D+%5B%5BATK%5D%5D%0A%3FDEF+string+%3D+%5B%5BDEF%5D%5D&amp;format=broadtable&amp;headers=plain&amp;class=sortable+wikitable+smwtable+card-list&amp;sort=%23&amp;order=asc&amp;limit=20" rel="nofollow">20</a> · <a class="external text" href="https://yugipedia.com/wiki/Special:Ask?q=%5B%5BConcept%3ACG+monsters%5D%5D%5B%5BType%3A%3ADragon%5D%5D+%5B%5BLevel%3A%3A7%7C%7C8%5D%5D+%5B%5BSummoning%3A%3ACan+be+Special+Summoned%5D%5D+%5B%5BEnglish+name%3A%3A%21Divine+Dragon+Lord+Felgrand%5D%5D&amp;p=mainlabel%3D-2D&amp;po=%3FEnglish+name+%28linked%29+%3D+Name%0A%3FJapanese+name%0A%0A%3FPrimary+type%0A%3FSecondary+type%0A%3FAttribute+%3D+%5B%5BAttribute%5D%5D%0A%0A%0A%3FStars+string+%3D+%5B%5BLevel%5D%5D%0A%3FPendulum+Scale+%3D+%5B%5BPendulum+Scale%7CScale%5D%5D%0A%3FATK+string+%3D+%5B%5BATK%5D%5D%0A%3FDEF+string+%3D+%5B%5BDEF%5D%5D&amp;format=broadtable&amp;headers=plain&amp;class=sortable+wikitable+smwtable+card-list&amp;sort=%23&amp;order=asc&amp;limit=50" rel="nofollow">50</a> · <a class="external text" href="https://yugipedia.com/wiki/Special:Ask?q=%5B%5BConcept%3ACG+monsters%5D%5D%5B%5BType%3A%3ADragon%5D%5D+%5B%5BLevel%3A%3A7%7C%7C8%5D%5D+%5B%5BSummoning%3A%3ACan+be+Special+Summoned%5D%5D+%5B%5BEnglish+name%3A%3A%21Divine+Dragon+Lord+Felgrand%5D%5D&amp;p=mainlabel%3D-2D&amp;po=%3FEnglish+name+%28linked%29+%3D+Name%0A%3FJapanese+name%0A%0A%3FPrimary+type%0A%3FSecondary+type%0A%3FAttribute+%3D+%5B%5BAttribute%5D%5D%0A%0A%0A%3FStars+string+%3D+%5B%5BLevel%5D%5D%0A%3FPendulum+Scale+%3D+%5B%5BPendulum+Scale%7CScale%5D%5D%0A%3FATK+string+%3D+%5B%5BATK%5D%5D%0A%3FDEF+string+%3D+%5B%5BDEF%5D%5D&amp;format=broadtable&amp;headers=plain&amp;class=sortable+wikitable+smwtable+card-list&amp;sort=%23&amp;order=asc&amp;limit=100" rel="nofollow">100</a>] results ¦ <a class="external text" href="https://yugipedia.com/wiki/Special:Ask?q=%5B%5BConcept%3ACG+monsters%5D%5D%5B%5BType%3A%3ADragon%5D%5D+%5B%5BLevel%3A%3A7%7C%7C8%5D%5D+%5B%5BSummoning%3A%3ACan+be+Special+Summoned%5D%5D+%5B%5BEnglish+name%3A%3A%21Divine+Dragon+Lord+Felgrand%5D%5D&amp;p=mainlabel%3D-2D&amp;po=%3FEnglish+name+%28linked%29+%3D+Name%0A%3FJapanese+name%0A%0A%3FPrimary+type%0A%3FSecondary+type%0A%3FAttribute+%3D+%5B%5BAttribute%5D%5D%0A%0A%0A%3FStars+string+%3D+%5B%5BLevel%5D%5D%0A%3FPendulum+Scale+%3D+%5B%5BPendulum+Scale%7CScale%5D%5D%0A%3FATK+string+%3D+%5B%5BATK%5D%5D%0A%3FDEF+string+%3D+%5B%5BDEF%5D%5D&amp;format=broadtable&amp;headers=plain&amp;class=sortable+wikitable+smwtable+card-list&amp;sort=%23&amp;order=asc&amp;limit=500" rel="nofollow">Show all 173 results</a> (all links open a new page)
-- We are on a mainspace page, and the hatnote starts with something
+
</td></tr>
-- like "Wikipedia:Foo redirects here", so automatically label it as
+
</tbody></table>-->
-- a self-reference.
 
mhOptions.selfref = true
 
else
 
mhOptions.selfref = options.selfref
 
end
 
end
 
--concatenate all the categories
 
local category = ''
 
for k,v in pairs(categoryTable) do
 
category = category .. k
 
end
 
  
return mHatnote._hatnote(text, mhOptions) .. category
+
[[Category:Restored articles needing attention]]
end
 
 
return p
 

Revision as of 22:21, 6 April 2023

  • This card works well in a "Blue-Eyes" or "Red-Eyes" Deck due to their abundance of Level 7 and 8 Dragon-Type monsters.
  • "Paladin of Felgrand" can Summon this card from the Graveyard the same turn it equips it with its effect, provided there is another monster on your field and an appropriate target in the Graveyard.
  • "Arkbrave Dragon" can summon this card from the Graveyard when it's send there from anywhere. This card then can special summon "Arkbrave Dragon" again, when it destroys opponent monster by battle.

Traditional Format

  • This card is effective with or against "Royal Oppression", since its summoning effect is activated during the Damage Step, during which "Royal Oppression" cannot negate summons.

List

  • Level 7 or 8 Dragon-Type monsters that can be Special Summoned: