Difference between revisions of "User:Dinoguy1000"

From Yugipedia
Jump to: navigation, search
(Replaced content with "FUCK YOU")
m (Reverted edits by 153.107.97.169 (talk) to last version by UltimateKuriboh)
Line 1: Line 1:
FUCK YOU
+
{{Ombox
 +
| text = I operate the [[wikipedia:WP:AWB|AWB]] bot {{User|Dinobot1000}}, which performs [[User:Dinobot1000#Current tasks|miscellaneous cleanup tasks]]. You can go to [[Forum:Request for a bot flag]] to read some detail on the bot's approval, or suggest new tasks on [[User talk:Dinoguy1000|my talk page]].
 +
}}
 +
{{SMW banner}}
 +
 
 +
{{w::User:Dinoguy1000}}
 +
<div style="text-align: center;"><span title="Dinoguy1000">{{Barian glyphs|Dinoguy|hover=}}{{Astral glyphs|1000|hover=}}</span><br />{{Astral glyphs|ディノガイセン}}</div>
 +
 
 +
Hi, I'm '''Dinoguy1000'''! I am an occasional<!-- leaving it for the lulz B) --> contributor here (for the record, I have [[Special:Editcount/Dinoguy1000|{{Special:Editcount/Dinoguy1000}}]] edits - [[Special:Contributions/Dinoguy1000|full list]]). Feel free to [[User talk:Dinoguy1000|leave me messages]]; I'll respond as soon as I can. If you have questions about another wiki I edit on, you should leave me a message on my talk page there; for non-wiki websites and other stuff, it's probably best to [[Special:EmailUser/Dinoguy1000|email me]].
 +
 
 +
== Maintenance and cleanup ==
 +
* [http://yugioh.wikia.com/api.php?action=query&meta=siteinfo&siprop=statistics Job queue count] ([[Special:Statistics|stats]])
 +
* [[:Category:Template maintenance categories]]
 +
** [[:Category:Card pages with a nonstandard unofficial name]]
 +
** [[:Category:Card pages with a nonstandard unofficial lore]]
 +
** CardTable2:
 +
*** [[:Category:Card pages using deprecated CardTable2 parameters]]
 +
*** [[:Category:CardTable2 parameter fallthrough]]
 +
*** [[:Category:CardTable2 parameter tracking]]
 +
*** [[:Category:CardTable2 transclusions with bad width values]]
 +
** [[:Category:FlagLang transclusions with unrecognized values]]
 +
** [[:Category:Forumheader transclusions to be checked]]
 +
** [[:Category:Navigation transclusions to be checked]]
 +
** [[:Category:OCG-TCG card image transclusions with missing or incorrect parameters]]
 +
* [[:Category:Candidates for Deletion]]
 +
* [[:Category:Media for renaming]]
 +
** [[:Category:Card images with incorrect names]]
 +
* Card sets and related pages in general (especially for promo sets, it's a real mess of unlinked pages with irregular naming)
 +
* Redlinks:
 +
** [[Special:Whatlinkshere/Bad title]]
 +
** [[Special:Whatlinkshere/Example]]
 +
** [[Special:Whatlinkshere/Example.jpg]]
 +
** [[Special:Whatlinkshere/Example.png]]
 +
** [[Special:Whatlinkshere/Example.gif]]
 +
** [[Special:Whatlinkshere/Example.ogg]]
 +
** [[Special:Whatlinkshere/Headline text]]
 +
** [[Special:Whatlinkshere/Insert formula here]]
 +
** [[Special:Whatlinkshere/Link title]]
 +
** [[Special:Whatlinkshere/File:Example]]
 +
** [[Special:Whatlinkshere/File:Example.jpg]]
 +
** [[Special:Whatlinkshere/File:Example.png]]
 +
** [[Special:Whatlinkshere/File:Example.gif]]
 +
** [[Special:Whatlinkshere/File:Example.ogg]]
 +
** [[Special:Whatlinkshere/File:Headline text]]
 +
** [[Special:Whatlinkshere/File:Insert formula here]]
 +
** [[Special:Whatlinkshere/File:Link title]]
 +
** [[Special:Whatlinkshere/Media:Example]]
 +
** [[Special:Whatlinkshere/Media:Example.jpg]]
 +
** [[Special:Whatlinkshere/Media:Example.png]]
 +
** [[Special:Whatlinkshere/Media:Example.gif]]
 +
** [[Special:Whatlinkshere/Media:Example.ogg]]
 +
** [[Special:Whatlinkshere/Media:Headline text]]
 +
** [[Special:Whatlinkshere/File:Insert formula here]]
 +
** [[Special:Whatlinkshere/Media:Link title]]
 +
 
 +
=== AWB stuff ===
 +
So I don't have to keep working out how to do simple stuff - see also [[/awbtest]].
 +
 
 +
==== Template replace ====
 +
<pre>{{Errata
 +
|name=%%pagename%%
 +
}}</pre>
 +
replaced with
 +
<pre>{{Navigation}}</pre>
 +
 
 +
"Options" tab:
 +
* "Automatic changes" boxes all unchecked
 +
* "Find and replace" box checked; "Normal settings":
 +
** <code><nowiki>{{Errata\s\|name=\s*?%%pagename%%\s}}</nowiki></code> replaced with <code><nowiki>{{Navigation}}</nowiki></code>
 +
*** \s = newline/whitespace
 +
*** \| = pipe
 +
*** \s*? = 0 or more whitespace characters, lazy match
 +
*** %%pagename%% = <nowiki>{{PAGENAME}}</nowiki>
 +
** "Regex" and "Enabled" boxes checked
 +
** all other boxes unchecked
 +
 
 +
==== Unofficial name ====
 +
<pre>'''''The Arabic name given is an approximation.'''''</pre>
 +
(example only; there's quite a bit of variety in practice - see the range of regexes below) replaced with
 +
<pre>{{Unofficial name|Arabic}}</pre>
 +
 
 +
"Options" tab:
 +
* "Automatic changes" boxes all unchecked
 +
* "Find and replace" box checked; "Normal settings":
 +
** <code><nowiki>'*The \[\[Card Names\:%%pagename%%\|(.+?)]],? name given is an approximation\.'*</nowiki></code> replaced with <code><nowiki>{{Unofficial name|$1}}</nowiki></code>
 +
*** '* = any number of consecutive ' (apostrophes)
 +
*** \[ = opening square bracket
 +
*** \: = colon (escaping it isn't strictly necessary but AWB doesn't like it unescaped)
 +
*** %%pagename%% = <nowiki>{{PAGENAME}}</nowiki>
 +
*** \| = pipe
 +
*** (.+?) = any word, 1 or more characters (lazy match)
 +
*** ,? = 0 or 1 commas
 +
*** \. = period (works without escaping, but could lead to weird results since an unescaped period actually matches any character)
 +
** <code><nowiki>'*The (.+?)\,? name given is an approximation\.'*</nowiki></code> replaced with <code><nowiki>{{Unofficial name|$1}}</nowiki></code>
 +
*** \,? = 0 or 1 commas, escaped to keep it from matching in (.+?)
 +
** <code><nowiki>'*The (.+?)\,? (.+?)\,? (.*?)\,? (.+?)\,? (.+?)\,? and (.+?)\,? names given are approximations\.'*</nowiki></code> replaced with <code><nowiki>{{Unofficial name|$1|$2|$3|$4|$5|$6}}</nowiki></code>
 +
** <code><nowiki>'*The (.+?)\,? (.+?)\,? (.+?)\,? (.+?)\,? and (.+?)\,? names given are approximations\.'*</nowiki></code> replaced with <code><nowiki>{{Unofficial name|$1|$2|$3|$4|$5}}</nowiki></code>
 +
** <code><nowiki>'*The (.+?)\,? (.+?)\,? (.+?)\,? and (.+?)\,? names given are approximations\.'*</nowiki></code> replaced with <code><nowiki>{{Unofficial name|$1|$2|$3|$4}}</nowiki></code>
 +
** <code><nowiki>'*The (.+?)\,? (.+?)\,? and (.+?)\,? names given are approximations\.'*</nowiki></code> replaced with <code><nowiki>{{Unofficial name|$1|$2|$3}}</nowiki></code>
 +
** <code><nowiki>'*The (.+?)\,? and (.+?)\,? names given are approximations\.'*</nowiki></code> replaced with <code><nowiki>{{Unofficial name|$1|$2}}</nowiki></code>
 +
** "Regex" and "Enabled" boxes are checked (for all)
 +
** all other boxes unchecked
 +
 
 +
=== Card image uploading fun ===
 +
<pre>{{OCG-TCG card image
 +
| name  = {{ subst:#replace: {{ subst:#explode: {{ subst:#replace: {{ subst:#replace: {{ subst:#replace: {{subst:PAGENAME}} | &#39; | ' }} | &quot; | " }} | &amp; | & }} | - | 0 }} | ***ABBR*** }}
 +
| set    = ***ABBR***
 +
| region = ***LN***
 +
| rarity = {{ subst:#explode: {{ subst:#explode: {{subst:PAGENAME}} | - | 2 }} | . | 0 }}
 +
}}
 +
{{Watermark}}</pre>
 +
 
 +
=== Archetype searches ===
 +
This query is useful for looking for cards that a support card for an archetype will support:
 +
 
 +
"''Japanese archetype name here''" site:yugioh.wikia.com "other card information" -"card game counterpart" -"redirected from" -intitle:user
 +
 
 +
* The quotes around the archetype string prevent Google from being too smart for its own good and sometimes not just searching for the Japanese text, but also ''the English translation'', thus preventing lots of irrelevant results from appearing.
 +
* The <code>"other card information"</code> prevents SMW list pages from appearing, since most of those list the Japanese names of cards and thus will otherwise appear in the results. It also prevents character versions of cards from appearing, since they don't use {{t|CardTable2}}.
 +
* The <code>-"card game counterpart"</code> prevents [[Bandai]], [[DDM]], [[Capsule Monsters]], etc. counterparts to OCG/TCG/anime/manga/VG cards from appearing in the results, since these generally don't get added to archetypes.
 +
* The <code>-"redirected from"</code> prevents redirects to pages, such as [[card number]]s, [[set number]]s, and alternate names, from appearing in the results, since these just duplicate the result for the card itself.
 +
* The <code>-intitle:user</code> prevents user pages from appearing in the results (in the off-chance there's a card with the word "user" in its name, this would miss that, but a [http://yugioh.wikia.com/index.php?title=Special%3AAsk&q=%5B%5BEnglish+Name%3A%3A~*User*%5D%5D+OR+%5B%5BEnglish+Name%3A%3A~*user*%5D%5D&po=&sort_num=&order_num=ASC&eq=yes&p%5Bformat%5D=broadtable&p%5Blimit%5D=20&p%5Bsort%5D=&p%5Boffset%5D=&p%5Bheaders%5D=show&p%5Bmainlabel%5D=&p%5Blink%5D=all&p%5Bsearchlabel%5D=&p%5Bintro%5D=&p%5Boutro%5D=&p%5Bdefault%5D=&p%5Bclass%5D=sortable+wikitable+smwtable&eq=yes quick query] suggests that's ridiculously rare).
 +
 
 +
For archetypes with names that have Ruby text, it's generally more useful to search for the base text and Ruby text separately then to try both at once.
 +
 
 +
=== Random tidbits ===
 +
This is useful for seeing what's ''really'' going on with <code><nowiki>{{PAGENAME}}</nowiki></code> and company (try it on [["We'll Be There" - Rex & Weevil]] ;) ), see also {{t|Normalized pagename}}:
 +
<pre><nowiki>{{ #tag: source | {{FULLPAGENAME}} | lang="html5" }}</nowiki></pre>
 +
 
 +
== Unofficial names and lores ==
 +
I add the templates {{t|Unofficial name}} and {{t|Unofficial lore}} to card pages when I have reason to believe that the name(s)/lore(s) in question really are unofficial. Generally, I'll add these tags to card pages for cards which appeared in ''[[Yu-Gi-Oh! ZEXAL]]'' (since that series has no official version yet), or cards which have not appeared in any anime/manga/video game (according to that card page) and have not had an English release (this means that most of my tagging is for English names and lores). If I tag something as unofficial that is actually official, please call me on it, and if possible, link me to somewhere that I can find similar official names/lores (e.g. if the English name is confirmed as official because the card appeared in an English video game, link me to a list of the English names of cards for that video game). Sources for official names include the obvious officially translated anime/manga/video games, but also extends to action figures, clothing, posters, commercials, press releases, etc.
 +
 
 +
{{User:Dinoguy1000/translators}}
 +
 
 +
== Contributions ==
 +
Some random things I've contributed (to) here.
 +
 
 +
* {{tl|Bandai rule}} (created, deployable (needs [[Template:Bandai rule/doc|documentation]] though))
 +
* {{tl|CardTable2}} (some random bits a few years ago; some of them may even still be getting used! =D  (I'm working on a [[Template:CardTable2/sandbox|complete overhaul]] now, and would appreciate [[Forum:Testing the CardTable2 update|help with testing]]))
 +
* {{tl|Card search tip}} (created, not deployable yet)
 +
* {{tl|Card table anime and manga appearances}} (created as metatemplate for the "[[Template:Card table anime and manga appearances see also|anime and manga appearances]]" template series)
 +
* {{tl|Card table set}} (created, test deployed, still have some functionality to be added)
 +
* {{tl|Credits}} (created, deployed, needs [[Template:Credits/doc|documentation]])
 +
* {{tl|For}} (recreated)
 +
* {{tl|Forum}} (created, based on input and sandboxes of [[User:Hide Head Turtle|Hide Head Turtle]] and [[User:Falzar FZ|Falzar FZ]])
 +
* {{tl|Forum/header}} (updated, added error-checking)
 +
* {{tl|Forum/nav}} (created, again based on input and sandboxes of Hide Head Turtle and Falzar FZ)
 +
* {{tl|Hide Factbox}} (created<!-- based on input from Delt, though I've no idea any more where the original thread is -->, deployable, needs [[Template:Hide Factbox/doc|documentation]])
 +
* {{tl|Infobox video game}} (renamed, cleaned up)
 +
* {{tl|Lang}} and {{tl|Ln}} (created)
 +
* {{tl|Monsters and Monster Cards}} (created)
 +
* {{tl|Navigation}} (updated, added error-checking)
 +
* {{tl|Negref banner}} (created as a [[mw:Extension:Negref|Negref]] counterpart to {{tl|SMW banner}})
 +
* {{tl|OCG-TCG card image}} (created, test-deployed, more tweaks to come)
 +
* {{tl|OCG-TCG set table}} (adopted, working off-and-on to get to a deployable state)
 +
* {{tl|R}} (created; going to move to {{tl|Rarity}} so I can reuse the name "Template:R")
 +
* {{tl|R from card number}} (created)
 +
* {{tl|R from set abbr}} (created)
 +
* {{tl|R from set number}} (created)
 +
* {{tl|Repeat}} (created, deployable)
 +
* {{tl|Ruby}} (created, deployable)
 +
* {{tl|Set}} (created; still playing with it to figure out just how I want it to work)
 +
* {{tl|SMW banner}} (created as an [[Template:Mbox|mbox]] notice for whether [[smw:|Semantic MediaWiki]] is currently enabled)
 +
* {{tl|SMW page name}} (created to return a page's plaintext, "canonical" page name)
 +
* {{tl|Unofficial name}} (created, deployed on [[Special:MostLinkedTemplates|over 5200 articles]])
 +
* {{tl|Unofficial lore}} (created as counterpart to {{tl|Unofficial name}})
 +
* Any number ("dozens" would probably not be an exaggeration) of templates, categories, and files (re)copied from Wikipedia (see also [[User:Dinoguy1000/wikimedia]]), many of which of the templates are now [[Special:MostLinkedTemplates|very widely used]]
 +
* Much of the highest-level categorization (starting at [[:Category:Browse]])
 +
* Lots of random [[Special:Specialpages]] log/report clearing
 +
* [[Order of Set Release]] (random work, tables)
 +
 
 +
=== To create ===
 +
* [[Template:Edition]]
 +
* [[Template:Ed]]
 +
 
 +
=== To refurbish ===
 +
* {{tl|Star}}
 +
 
 +
=== To deprecate/delete ===
 +
Replacement SVGs to the right. Note that some of them are probably incorrect, since I'm listing them from memory (feel free to correct any you notice), and some obviously haven't been uploaded yet.
 +
* [[:File:ARG.png]] ([[:File:Flag of Argentina.svg]])
 +
* [[:File:AUS.png]] ([[:File:Flag of Australia.svg]])
 +
* [[:File:AUT.png]] ([[:File:Flag of Austria.svg]])
 +
* [[:File:BLG.png]] ([[:File:Flag of Belgium.svg]])
 +
* [[:File:BRZ.png]] ([[:File:Flag of Brazil.svg]])
 +
* [[:File:CAN.png]] ([[:File:Flag of Canada.svg]])
 +
* [[:File:CHL.png]] ([[:File:Flag of Chile.svg]])
 +
* [[:File:CHN.png]] ([[:File:Flag of the People's Republic of China.svg]])
 +
* [[:File:CRO.png]] ([[:File:Flag of Croatia.svg]])
 +
* [[:File:CYP.png]] ([[:File:Flag of Cyprus.svg]])
 +
* [[:File:CZR.png]] ([[:File:Flag of the Czech Republic.svg]])
 +
* [[:File:DEN.png]] ([[:File:Flag of Denmark.svg]])
 +
* [[:File:EST.png]] ([[:File:Flag of Estonia.svg]])
 +
* [[:File:EUR.png]] ([[:File:Flag of Europe.svg]])
 +
* [[:File:FCN.png]] ([[:File:Flag of Quebec.svg]])
 +
* [[:File:FIN.png]] ([[:File:Flag of Finland.svg]])
 +
* [[:File:FRN.png]] ([[:File:Flag of France.svg]])
 +
* [[:File:GER.png]] ([[:File:Flag of Germany.svg]])
 +
* [[:File:GRE.png]] ([[:File:Flag of Greece.svg]])
 +
* [[:File:HKG.png]] ([[:File:Flag of Hong Kong.svg]])
 +
* [[:File:HUN.png]] ([[:File:Flag of Hungary.svg]])
 +
* [[:File:IRL.png]] ([[:File:Flag of Ireland.svg]])
 +
* [[:File:ITA.png]], [[:File:ITN.png]] ([[:File:Flag of Italy.svg]])
 +
* [[:File:JPN.png]] ([[:File:Flag of Japan.svg]])
 +
* [[:File:LAT.png]] ([[:File:Flag of Latvia.svg]])
 +
* [[:File:LUX.png]] ([[:File:Flag of Luxembourg.svg]])
 +
* [[:File:MEX.png]] ([[:File:Flag of Mexico.svg]])
 +
* [[:File:MYA.png]] ([[:File:Flag of Malaysia.svg]])
 +
* [[:File:NOR.png]] ([[:File:Flag of Norway.svg]])
 +
* [[:File:NTH.png]] ([[:File:Flag of .svg]])
 +
* [[:File:NZL.png]] ([[:File:Flag of New Zealand.svg]])
 +
* [[:File:PHI.png]] ([[:File:Flag of the Philippines.svg]])
 +
* [[:File:POL.png]] ([[:File:Flag of Poland.svg]])
 +
* [[:File:POR.png]] ([[:File:Flag of Portugal.svg]])
 +
* [[:File:RSA.png]] ([[:File:Flag of South Africa.svg]])
 +
* [[:File:RUS.png]] ([[:File:Flag of Russia.svg]])
 +
* [[:File:SAU.png]] ([[:File:Flag of Saudi Arabia.svg]])
 +
* [[:File:SIN.png]] ([[:File:Flag of Singapore.svg]])
 +
* [[:File:SKR.png]] ([[:File:Flag of South Korea.svg]])
 +
* [[:File:SPN.png]] ([[:File:Flag of Spain.svg]])
 +
* [[:File:SKA.png]] ([[:File:Flag of Slovakia.svg]])
 +
* [[:File:SVA.png]] ([[:File:Flag of Slovenia.svg]])
 +
* [[:File:SWE.png]] ([[:File:Flag of Sweden.svg]])
 +
* [[:File:SWZ.png]] ([[:File:Flag of Switzerland.svg]])
 +
* [[:File:TAI.png]] ([[:File:Flag of Taiwan.svg]])
 +
* [[:File:THI.png]] ([[:File:Flag of Thailand.svg]])
 +
* [[:File:TUR.png]] ([[:File:Flag of Turkey.svg]])
 +
* [[:File:UKM.png]] ([[:File:Flag of the United Kingdom.svg]])
 +
* [[:File:USA.png]] ([[:File:Flag of the United States.svg]])
 +
* Also, the "Flag of *.png" flags
 +
 
 +
=== To do ===
 +
* Keep expanding the [[Template:Timeline|real-world timeline]]
 +
* Look more closely at the [[w:c:avatar:Template:Icons]] system
 +
* <s>Look more closely at {{t|Portal}} to see if it can use anything from {{t|PortalDeck}} and {{t|PortalOmni}}</s>, then start switching stuff over
 +
 
 +
== Random ==
 +
 
 +
=== Haiku ===
 +
:[[Manga]], [[anime]]...
 +
:[[Card effect]]s come and go, as
 +
:might a summer breeze
 +
 
 +
:[[Yu-Gi-Oh! 5D's|Motorbikes and cards]]
 +
:do not seem like they'd mix well.
 +
:[[Yu-Gi-Oh! 5D's - Ride 001|First Ride]] incomplete.
 +
 
 +
=== Other stuff ===
 +
<poem>Stop says the red light, go says the green
 +
Wait says the yellow light, twinkling in between.
 +
KNEEL, SAYS THE DEMON LIGHT
 +
WITH ITS EYE OF COAL
 +
SAURON KNOWS YOUR LICENSE PLATE
 +
AND STARES INTO YOUR SOUL<sup class="plainlinks">[http://www.youtube.com/comment?lc=REJV0NGzxZ4nbvWNYkx_CkBA72qb6lqHb0HY7sfApRA [src&#93;]</sup></poem>
 +
 
 +
== Card lists ==
 +
 
 +
''Note: I'm probably going to just start from scratch; I've learned *a lot* about template coding since I created these.''
 +
 
 +
Colors for rows:<!-- feel free to add more colors from official sources; I'm probably gonna adjust these some before using them -->
 +
{| class="wikitable"
 +
! Site
 +
! Normal Monsters
 +
! Effect Monsters
 +
! Fusion Monsters
 +
! Ritual Monsters
 +
! Synchro Monsters
 +
! Spell Cards
 +
! Trap Cards
 +
|-
 +
! [http://www.yugioh-card.com/oc/limited/]
 +
| style="background: #FEFF99;" | FEFF99
 +
| style="background: #FBD4B5;" | FBD4B5
 +
| style="background: #CDC0DA;" | CDC0DA
 +
| style="background: #CCC0D8;" | CCC0D8
 +
| style="background: #F2F2F2;" | F2F2F2
 +
| style="background: #D7E3BD;" | D7E3BD
 +
| style="background: #E5B7B7;" | E5B7B7
 +
|-
 +
! rowspan="2" | [http://www.yugioh-card.com/en/limited/10_09_list.html]<!-- this is now a dead link... too bad, it's a shame Konami isn't keeping all their old Forbidden/Limited lists up -->
 +
| rowspan="2" style="background: #FDE68A;" | FDE68A
 +
| rowspan="2" style="background: #FF8B53;" | FF8B53
 +
| rowspan="2" style="background: #A086B7;" | A086B7
 +
| rowspan="2" style="background: #FFFFFF;" | ???<!-- none listed; Demise is listed as "Monster/Effect" -->
 +
| style="background: #CCCCCC;" | CCCCCC
 +
| rowspan="2" style="background: #1D9E74;" | 1D9E74
 +
| rowspan="2" style="background: #BC5A84;" | BC5A84
 +
|-
 +
| style="background: #999999;" | 999999<!-- Black Rose Dragon -->
 +
|-
 +
! [http://www.yugioh-card.com/en/limited/11_03_list.html]
 +
| style="background: #FDE68A;" | FDE68A
 +
| style="background: #FF8B53;" | FF8B53
 +
| style="background: #A086B7;" | A086B7
 +
| style="background: #9DB5CC;" | 9DB5CC
 +
| style="background: #CCCCCC;" | CCCCCC
 +
| style="background: #1D9E74;" | 1D9E74
 +
| style="background: #BC5A84;" | BC5A84
 +
|-
 +
! [http://www.yugioh-card.com/en/limited/]
 +
| style="background: #FDE68A;" | FDE68A
 +
| style="background: #FF8B53;" | FF8B53
 +
| style="background: #A086B7;" | A086B7
 +
| style="background: #FFFFFF;" | ???<!-- none listed -->
 +
| style="background: #CCCCCC;" | CCCCCC
 +
| style="background: #1D9E74;" | 1D9E74
 +
| style="background: #BC5A84;" | BC5A84
 +
<!--
 +
|-
 +
! []
 +
| style="background: #;" |
 +
| style="background: #;" |
 +
| style="background: #;" |
 +
| style="background: #;" |
 +
| style="background: #;" |
 +
| style="background: #;" |
 +
| style="background: #;" |
 +
-->
 +
|}
 +
 
 +
Here's a test of some card list templates for users to use to show what and how many cards they have.
 +
 
 +
=== Todo ===
 +
 
 +
* Improve formatting and styling
 +
** <strike>TOTAL column bg should be a different color</strike>
 +
** <strike>totals should be '''bold'''</strike>
 +
** Allow user-specified styling (pretty simple to do, I hope...)
 +
*** Default and user-specified even- and odd-row styles? (how will it work with auto-hiding rows?)
 +
* Add set total row (must be done set-by-set... ugh.)
 +
* Implement hidden rows <strike>and columns</strike>... (hidden columns work all-or-none for a given set)
 +
** <strike>when no copies of a card are owned</strike> (only in '''row''', not in '''boosterrow''' or '''promorow''' (which will be replaced by '''row''' anyways))
 +
*** <strike>No specific column naming (e.g. col1, col2, col3... instead of mu, m1, su, etc.)</strike>
 +
** for more specific collection nuances (e.g. Magic vs. Spell) (partially done... main and region headers play nice, as does '''row''') (hmm... I've got to rework it, see above)
 +
* Ultimate Rares get their own rows (and/or sections) (actually, no set has magic/spell and UtRs (at least in the TCG, not sure about the OCG), so I can reuse the appropriate columns). How about errata/misprint cards?
 +
* Test thoroughly (i.e. make template for several sets, use own collection for a basis)
 +
* Move templates out of sandbox when done testing
 +
* Make a template for every set
 +
*# English-region
 +
*## Booster (and SE and SP) sets
 +
*## Reprint sets
 +
*## Duelist packs
 +
*## Videogame sets
 +
*## Tournament/Premium packs
 +
*## Duelist League sets
 +
*## Championship sets
 +
*## Any other promo sets
 +
*# Japanese-region
 +
*## see above
 +
*# any others
 +
 
 +
=== Templates ===
 +
 
 +
* {{[[User:Dinoguy1000/sandbox/cardlist-template-mainheader]]}}
 +
* {{[[User:Dinoguy1000/sandbox/cardlist-template-regionheader]]}}
 +
* {{[[User:Dinoguy1000/sandbox/cardlist-template-boosterheader]]}}
 +
* {{[[User:Dinoguy1000/sandbox/cardlist-template-row]]}}
 +
* {{[[User:Dinoguy1000/sandbox/cardlist-template-promorow]]}}
 +
* {{[[User:Dinoguy1000/sandbox/cardlist-template-promofooter]]}}
 +
* {{[[User:Dinoguy1000/sandbox/cardlist-template-footer]]}}
 +
 
 +
=== Test ===
 +
 
 +
{{[[/sandbox/ct04-en-cardlist]]}}
 +
 
 +
{{/sandbox/ct04-en-cardlist|ct04en001qty=1|ct04en002qty=1}}
 +
 
 +
==== Rowtest ====
 +
 
 +
{{[[/sandbox/cardlist-template-row]]}}
 +
 
 +
'''One column for number of cards, set number row excluded'''<br>
 +
{{/sandbox/cardlist-template-mainheader|set-col=hide}}
 +
{{/sandbox/cardlist-template-boosterheader|set-col=hide}}
 +
{{/sandbox/cardlist-template-row
 +
|empty-rows=hide
 +
|set-col=hide
 +
|u-1-cols=
 +
|m-s-cols=
 +
|t=5
 +
}}
 +
|}
 +
 
 +
'''One column for number of cards, set number row included'''<br>
 +
{{/sandbox/cardlist-template-mainheader}}
 +
{{/sandbox/cardlist-template-boosterheader}}
 +
{{/sandbox/cardlist-template-row
 +
|empty-rows=hide
 +
|set-col=
 +
|u-1-cols=
 +
|m-s-cols=
 +
|t=5
 +
}}
 +
|}
 +
 
 +
'''Two columns for number of cards (unlimited versus first editions), one total column, set number row excluded'''<br>
 +
{{/sandbox/cardlist-template-mainheader|set-col=hide|u-1-cols=show}}
 +
{{/sandbox/cardlist-template-boosterheader|set-col=hide|u-1-cols=show}}
 +
{{/sandbox/cardlist-template-row
 +
|empty-rows=hide
 +
|set-col=hide
 +
|u-1-cols=show
 +
|m-s-cols=
 +
|t2=6
 +
|t3=7
 +
}}
 +
|}
 +
 
 +
'''Two columns for number of cards (unlimited versus first editions), one total column, set number row included'''<br>
 +
{{/sandbox/cardlist-template-mainheader|u-1-cols=show}}
 +
{{/sandbox/cardlist-template-boosterheader|u-1-cols=show}}
 +
{{/sandbox/cardlist-template-row
 +
|empty-rows=hide
 +
|set-col=
 +
|u-1-cols=show
 +
|m-s-cols=
 +
|t2=6
 +
|t3=7
 +
}}
 +
|}
 +
 
 +
'''Two columns for number of cards (magic versus spell), one total column, set number row excluded'''<br>
 +
{{/sandbox/cardlist-template-mainheader|set-col=hide|m-s-cols=show}}
 +
{{/sandbox/cardlist-template-boosterheader|set-col=hide|m-s-cols=show}}
 +
{{/sandbox/cardlist-template-row
 +
|empty-rows=hide
 +
|set-col=hide
 +
|u-1-cols=
 +
|m-s-cols=show
 +
|t1=6
 +
|t4=7
 +
}}
 +
|}
 +
 
 +
'''Two columns for number of cards (magic versus spell), one total column, set number row included'''<br>
 +
{{/sandbox/cardlist-template-mainheader|m-s-cols=show}}
 +
{{/sandbox/cardlist-template-boosterheader|m-s-cols=show}}
 +
{{/sandbox/cardlist-template-row
 +
|empty-rows=hide
 +
|set-col=
 +
|u-1-cols=
 +
|m-s-cols=show
 +
|t1=6
 +
|t4=7
 +
}}
 +
|}
 +
 
 +
==All subpages==
 +
;User:
 +
{{Special:Prefixindex/User:Dinoguy1000}}
 +
 
 +
;User talk:
 +
{{Special:Prefixindex/User talk:Dinoguy1000}}
 +
 
 +
[[de:Benutzer:Dinoguy1000]]
 +
[[es:Usuario:Dinoguy1000]]

Revision as of 03:09, 11 March 2013

Template:W::User:Dinoguy1000

Dinoguy1
ディノガイセン

Hi, I'm Dinoguy1000! I am an occasional contributor here (for the record, I have 17,462 edits - full list). Feel free to leave me messages; I'll respond as soon as I can. If you have questions about another wiki I edit on, you should leave me a message on my talk page there; for non-wiki websites and other stuff, it's probably best to email me.

Maintenance and cleanup

AWB stuff

So I don't have to keep working out how to do simple stuff - see also /awbtest.

Template replace

{{Errata
|name=%%pagename%%
}}

replaced with

{{Navigation}}

"Options" tab:

  • "Automatic changes" boxes all unchecked
  • "Find and replace" box checked; "Normal settings":
    • {{Errata\s\|name=\s*?%%pagename%%\s}} replaced with {{Navigation}}
      • \s = newline/whitespace
      • \| = pipe
      • \s*? = 0 or more whitespace characters, lazy match
      •  %%pagename%% = {{PAGENAME}}
    • "Regex" and "Enabled" boxes checked
    • all other boxes unchecked

Unofficial name

'''''The Arabic name given is an approximation.'''''

(example only; there's quite a bit of variety in practice - see the range of regexes below) replaced with

{{Unofficial name|Arabic}}

"Options" tab:

  • "Automatic changes" boxes all unchecked
  • "Find and replace" box checked; "Normal settings":
    • '*The \[\[Card Names\:%%pagename%%\|(.+?)]],? name given is an approximation\.'* replaced with {{Unofficial name|$1}}
      • '* = any number of consecutive ' (apostrophes)
      • \[ = opening square bracket
      • \: = colon (escaping it isn't strictly necessary but AWB doesn't like it unescaped)
      •  %%pagename%% = {{PAGENAME}}
      • \| = pipe
      • (.+?) = any word, 1 or more characters (lazy match)
      • ,? = 0 or 1 commas
      • \. = period (works without escaping, but could lead to weird results since an unescaped period actually matches any character)
    • '*The (.+?)\,? name given is an approximation\.'* replaced with {{Unofficial name|$1}}
      • \,? = 0 or 1 commas, escaped to keep it from matching in (.+?)
    • '*The (.+?)\,? (.+?)\,? (.*?)\,? (.+?)\,? (.+?)\,? and (.+?)\,? names given are approximations\.'* replaced with {{Unofficial name|$1|$2|$3|$4|$5|$6}}
    • '*The (.+?)\,? (.+?)\,? (.+?)\,? (.+?)\,? and (.+?)\,? names given are approximations\.'* replaced with {{Unofficial name|$1|$2|$3|$4|$5}}
    • '*The (.+?)\,? (.+?)\,? (.+?)\,? and (.+?)\,? names given are approximations\.'* replaced with {{Unofficial name|$1|$2|$3|$4}}
    • '*The (.+?)\,? (.+?)\,? and (.+?)\,? names given are approximations\.'* replaced with {{Unofficial name|$1|$2|$3}}
    • '*The (.+?)\,? and (.+?)\,? names given are approximations\.'* replaced with {{Unofficial name|$1|$2}}
    • "Regex" and "Enabled" boxes are checked (for all)
    • all other boxes unchecked

Card image uploading fun

{{OCG-TCG card image
| name   = {{ subst:#replace: {{ subst:#explode: {{ subst:#replace: {{ subst:#replace: {{ subst:#replace: {{subst:PAGENAME}} | ' | ' }} | " | " }} | & | & }} | - | 0 }} | ***ABBR*** }}
| set    = ***ABBR***
| region = ***LN***
| rarity = {{ subst:#explode: {{ subst:#explode: {{subst:PAGENAME}} | - | 2 }} | . | 0 }}
}}
{{Watermark}}

Archetype searches

This query is useful for looking for cards that a support card for an archetype will support:

"Japanese archetype name here" site:yugioh.wikia.com "other card information" -"card game counterpart" -"redirected from" -intitle:user
  • The quotes around the archetype string prevent Google from being too smart for its own good and sometimes not just searching for the Japanese text, but also the English translation, thus preventing lots of irrelevant results from appearing.
  • The "other card information" prevents SMW list pages from appearing, since most of those list the Japanese names of cards and thus will otherwise appear in the results. It also prevents character versions of cards from appearing, since they don't use {{CardTable2}}.
  • The -"card game counterpart" prevents Bandai, DDM, Capsule Monsters, etc. counterparts to OCG/TCG/anime/manga/VG cards from appearing in the results, since these generally don't get added to archetypes.
  • The -"redirected from" prevents redirects to pages, such as card numbers, set numbers, and alternate names, from appearing in the results, since these just duplicate the result for the card itself.
  • The -intitle:user prevents user pages from appearing in the results (in the off-chance there's a card with the word "user" in its name, this would miss that, but a quick query suggests that's ridiculously rare).

For archetypes with names that have Ruby text, it's generally more useful to search for the base text and Ruby text separately then to try both at once.

Random tidbits

This is useful for seeing what's really going on with {{PAGENAME}} and company (try it on "We'll Be There" - Rex & Weevil ;) ), see also {{Normalized pagename}}:

{{ #tag: source | {{FULLPAGENAME}} | lang="html5" }}

Unofficial names and lores

I add the templates {{Unofficial name}} and {{Unofficial lore}} to card pages when I have reason to believe that the name(s)/lore(s) in question really are unofficial. Generally, I'll add these tags to card pages for cards which appeared in Yu-Gi-Oh! ZEXAL (since that series has no official version yet), or cards which have not appeared in any anime/manga/video game (according to that card page) and have not had an English release (this means that most of my tagging is for English names and lores). If I tag something as unofficial that is actually official, please call me on it, and if possible, link me to somewhere that I can find similar official names/lores (e.g. if the English name is confirmed as official because the card appeared in an English video game, link me to a list of the English names of cards for that video game). Sources for official names include the obvious officially translated anime/manga/video games, but also extends to action figures, clothing, posters, commercials, press releases, etc.

Translators

This is a list of users I know to be actively translating card information into other languages (the language/s they work in, linked to the relevant category/ies when applicable, follows their name). If you do similar work, or if you see an inaccuracy or omission in the list, please feel free to add or update the information. =)

Contributions

Some random things I've contributed (to) here.

To create

To refurbish

To deprecate/delete

Replacement SVGs to the right. Note that some of them are probably incorrect, since I'm listing them from memory (feel free to correct any you notice), and some obviously haven't been uploaded yet.

To do

Random

Haiku

Manga, anime...
Card effects come and go, as
might a summer breeze
Motorbikes and cards
do not seem like they'd mix well.
First Ride incomplete.

Other stuff

Stop says the red light, go says the green
Wait says the yellow light, twinkling in between.
KNEEL, SAYS THE DEMON LIGHT
WITH ITS EYE OF COAL
SAURON KNOWS YOUR LICENSE PLATE
AND STARES INTO YOUR SOUL[src]

Card lists

Note: I'm probably going to just start from scratch; I've learned *a lot* about template coding since I created these.

Colors for rows:

Site Normal Monsters Effect Monsters Fusion Monsters Ritual Monsters Synchro Monsters Spell Cards Trap Cards
[1] FEFF99 FBD4B5 CDC0DA CCC0D8 F2F2F2 D7E3BD E5B7B7
[2] FDE68A FF8B53 A086B7 ??? CCCCCC 1D9E74 BC5A84
999999
[3] FDE68A FF8B53 A086B7 9DB5CC CCCCCC 1D9E74 BC5A84
[4] FDE68A FF8B53 A086B7 ??? CCCCCC 1D9E74 BC5A84

Here's a test of some card list templates for users to use to show what and how many cards they have.

Todo

  • Improve formatting and styling
    • TOTAL column bg should be a different color
    • totals should be bold
    • Allow user-specified styling (pretty simple to do, I hope...)
      • Default and user-specified even- and odd-row styles? (how will it work with auto-hiding rows?)
  • Add set total row (must be done set-by-set... ugh.)
  • Implement hidden rows and columns... (hidden columns work all-or-none for a given set)
    • when no copies of a card are owned (only in row, not in boosterrow or promorow (which will be replaced by row anyways))
      • No specific column naming (e.g. col1, col2, col3... instead of mu, m1, su, etc.)
    • for more specific collection nuances (e.g. Magic vs. Spell) (partially done... main and region headers play nice, as does row) (hmm... I've got to rework it, see above)
  • Ultimate Rares get their own rows (and/or sections) (actually, no set has magic/spell and UtRs (at least in the TCG, not sure about the OCG), so I can reuse the appropriate columns). How about errata/misprint cards?
  • Test thoroughly (i.e. make template for several sets, use own collection for a basis)
  • Move templates out of sandbox when done testing
  • Make a template for every set
    1. English-region
      1. Booster (and SE and SP) sets
      2. Reprint sets
      3. Duelist packs
      4. Videogame sets
      5. Tournament/Premium packs
      6. Duelist League sets
      7. Championship sets
      8. Any other promo sets
    2. Japanese-region
      1. see above
    3. any others

Templates

Test

{{/sandbox/ct04-en-cardlist}}

User:Dinoguy1000/sandbox/ct04-en-cardlist

Rowtest

{{/sandbox/cardlist-template-row}}

One column for number of cards, set number row excluded
User:Dinoguy1000/sandbox/cardlist-template-mainheader User:Dinoguy1000/sandbox/cardlist-template-boosterheader User:Dinoguy1000/sandbox/cardlist-template-row |}

One column for number of cards, set number row included
User:Dinoguy1000/sandbox/cardlist-template-mainheader User:Dinoguy1000/sandbox/cardlist-template-boosterheader User:Dinoguy1000/sandbox/cardlist-template-row |}

Two columns for number of cards (unlimited versus first editions), one total column, set number row excluded
User:Dinoguy1000/sandbox/cardlist-template-mainheader User:Dinoguy1000/sandbox/cardlist-template-boosterheader User:Dinoguy1000/sandbox/cardlist-template-row |}

Two columns for number of cards (unlimited versus first editions), one total column, set number row included
User:Dinoguy1000/sandbox/cardlist-template-mainheader User:Dinoguy1000/sandbox/cardlist-template-boosterheader User:Dinoguy1000/sandbox/cardlist-template-row |}

Two columns for number of cards (magic versus spell), one total column, set number row excluded
User:Dinoguy1000/sandbox/cardlist-template-mainheader User:Dinoguy1000/sandbox/cardlist-template-boosterheader User:Dinoguy1000/sandbox/cardlist-template-row |}

Two columns for number of cards (magic versus spell), one total column, set number row included
User:Dinoguy1000/sandbox/cardlist-template-mainheader User:Dinoguy1000/sandbox/cardlist-template-boosterheader User:Dinoguy1000/sandbox/cardlist-template-row |}

All subpages

User
User talk

de:Benutzer:Dinoguy1000 es:Usuario:Dinoguy1000