User:Abcboy: Difference between revisions

From Bulbapedia, the community-driven Pokémon encyclopedia.
Jump to navigationJump to search
Line 302: Line 302:
| [https://www.dropbox.com/s/54q1jj28h98ul4t/white2_fre.zip?dl=0 W2]
| [https://www.dropbox.com/s/54q1jj28h98ul4t/white2_fre.zip?dl=0 W2]
| [https://www.dropbox.com/s/vzdnd9gjqzaum8a/black2_ger.zip?dl=0 B2]
| [https://www.dropbox.com/s/vzdnd9gjqzaum8a/black2_ger.zip?dl=0 B2]
| [https://www.dropbox.com/s/8o871nuofh2kqn9/black2_ita.zip?dl=0 B2]
| [https://www.dropbox.com/s/btt0ie07vs3z9y8/black2_ita.zip?dl=0 B2]
| [https://www.dropbox.com/s/zn83viv807465o8/black2_jpn.zip?dl=0 B2], [https://www.dropbox.com/s/yc66vehj08cmqfp/white_jpn.zip?dl=0 W2]
| [https://www.dropbox.com/s/zn83viv807465o8/black2_jpn.zip?dl=0 B2], [https://www.dropbox.com/s/yc66vehj08cmqfp/white_jpn.zip?dl=0 W2]
| [https://www.dropbox.com/s/n1u5lxu70w9hp92/black2_kor.zip?dl=0 B2]
| [https://www.dropbox.com/s/n1u5lxu70w9hp92/black2_kor.zip?dl=0 B2]

Revision as of 07:48, 8 August 2015

351Castform Normal Dream.png 351Castform Sunny Form Dream.png 351Castform Rainy Form Dream.png 351Castform Snowy Form Dream.png
Userpage Subpages Navigation Talk page
This page was last edited by
Abcboy on 8 August 2015.
HP: 168 / 233
Archives:
1 (July 2008 – July 2015‎) • 2 (July 2015 – Feb 2016)
3 (Feb 2016 – Jan 2017) • 4 (Jan 2017 – Nov 2018)
5 (Nov 2018 - Dec 2019) • 6 (Jan 2020 – Aug 2023)

2,830/53,000 articles (5.3%) are stubs!

4,703/53,000 articles (8.9%) need more information!

Bulbapedia logo.png This user is a Junior Administrator.
EST This user uses Eastern Standard Time, which is UTC-5.
EDT During the northern Hemisphere summer, daylight saving time is in effect, which is UTC-4.
en This user is a native speaker of English.
es-1 Este usuario puede contribuir con un nivel básico de español.
zh-1 該 用戶能以基本中 文進行交流。
该 用户能以基本中 文进行交流。
links This user thinks red links are not evil.
Active Bulbapedia staff
Executive Staff: ArchaicdigBMGFEnzapevklKogoroMAGNEDETH
Editor-in-Chief: Maverick Nate
Deputy Editors-in-Chief: abcboyPokemaster97

Leadership Board:
AtaroFrozen Fennecnuva-kalSnorlaxMonsterSpriteitTiddlywinks


Administrators:
4iamkingBlazingfistBoblersbthrussellUKChosenDaniel CarreroEridanus
glikLandfish7MisterE13NescientistStorm AuroraTehPersonWowy神奇超龍


Junior Administrators:
AnzasquiddlesBigDocFanNikurikuRockaphellerRuixiang95


Secret MediaWiki classes

.l{text-align:left}
.c{text-align:center}
.r{text-align:right}

Editing tips

  • Can't remember a Pokémon's Pokédex number? Just type {{subst:N2Num|<Pokémon's name>}} to substitute {{N2Num}}, a template that turns names to numbers. The opposite template, which turns numbers to names, is {{Num2N}}.
  • Trying to search for something in wikicode? Append insource: to your search to search the wikicode!

To-do list

Feel free to help complete these tasks and remove them when completed.

Time-based

  • None!

Recurring


Roundy table code


Text dumps

Please help find text dumps of all games in all languages! If you find one or dump one yourself, put the link here in this table:

Required for navigation


Countdown documentation

Countdowns have five important and necessary parts:

  • <div id="countdown" style="display: none"> [...] </div>: This is the countdown container. Other styles and classes can be applied. When the code activates, the countdown container is unhidden.
  • <div id="countdown-big"></div>: This displays the days and is kept inside the countdown container. Styles and classes can be applied. If the event takes place within 24 hours, this is empty. If the date at the time zone mentioned matches the date coded, this displays "Today". If the event has passed, this displays "Past" instead.
  • <div id="countdown-small"></div>: This displays the hours, minutes, and seconds and is kept inside the countdown container. Styles and classes can be applied.
  • <div id="countdown-target"></div>: This displays the date that is being counted down to and the timezone of the date. It is kept inside the countdown container. Styles and classes can be applied.
  • <countdown />: This sets the date and time zone to which it should count down. Parameters:
    • year: The year of the date to which it should count down to.
    • month: The month of the date to which it should count down to.
    • day: The day of the date to which it should count down to.
    • tz: The timezone it should count down in (e.g. EST, EDT, PST, JST). If a switch in daylight savings time status occurs during the countdown, it should be set to the status at the end of the countdown. Additional text may be added to this parameter.
    • tzoffset: The timezone offset it should count down in (e.g. -5, -4, +8). If a switch in daylight savings time status occurs during the countdown, it should be set to the status at the end of the countdown.

Only one countdown can be used per page as necessary functionality requires that each countdown has these IDs.

If the date to which it should count down requires the use of parser functions or other wikicode, the {{#tag:}} parser function should be used.

Internally, countdowns are operated throughout the parsing of the <countdown /> element by the MediaWiki software and the JavaScript contained in MediaWiki:Common.js

For example, the following countdown will count down to the release of Pokémon Super Mystery Dungeon in Japan, and if that has occurred, January 1 of next year in New York time:

Code:

<div id="countdown" class="roundy" style="font-family: 'Trebuchet MS', sans-serif; font-size: 150%; text-align: center; padding: 0.5em; display: none; background:#{{gold color}};">
<div id="countdown-big" style="line-height: 100%; font-size: 250%; color:#000;"></div>
<div id="countdown-small" style="line-height: 120%; color:#000;"></div>
<div id="countdown-target" style="font-size: smaller; line-height: 120%; color:#000;"></div>
{{#ifexpr: {{#time: U |+9 hours}} < 1442502000|<div style="font-size: smaller; line-height: 120%; color:#000;">of [[Pokémon Super Mystery Dungeon]] in Japan!</div>}}
</div>
{{#ifexpr: {{#time: U |+9 hours}} < 1442502000
|{{#tag: countdown||year=2015|month=9|day=17|tz=JST (UTC +9) and the release|tzoffset=+9}}
|{{#tag: countdown||year={{#expr: {{#time: Y |-29 hours}} + 1}}|month=1|day=1|tz=EST (UTC -5)|tzoffset=-5}}
}}