User:Dine2017: Difference between revisions

From the Super Mario Wiki, the Mario encyclopedia
Jump to navigationJump to search
mNo edit summary
Line 13: Line 13:


==''Paper Mario'' Minor NPC project==
==''Paper Mario'' Minor NPC project==
<strong>STATUS: Temporarily suspended due to lost of interest.</strong> I don't mind if you continue this project without asking me. Also, I wonder if these tables should be moved to a single page (like {{fake link|List of Minor NPCs in ''Paper Mario''}}) since some of them take too much space.
<strong>STATUS: Working on [[List of minor NPCs in Paper Mario]].</strong> I initially put the content on the location pages as shown below, but it turns out that some of the pages (such as [[Bowser's Castle]]) were so long that they could not have another long list added.


The quotes come from the [http://www.romhacking.net/community/3078/ Paper Mario Text Dump] by Rew, but I have personally verified their intended usage by playing the game.
The quotes come from the [http://www.romhacking.net/community/3078/ Paper Mario Text Dump] by Rew, but I have personally verified their intended usage by playing the game.

Revision as of 09:19, July 5, 2022

Dine2017's Userbox Tower
zh-n
cmn-n
ja-2
en-2
ko-1

Typo removal

I'm currently fixing typos in the mainspace. The easiest way to find them is to search for duplicate words like "the the", "a a", "an an", "a an", "to to" (warning: this one can be grammatical in some contexts), etc.

After this is done, I plan to search for variations of game titles, like "Paper Mario: The Thousand Year Door" for "Paper Mario: The Thousand-Year Door".

Paper Mario Minor NPC project

STATUS: Working on List of minor NPCs in Paper Mario. I initially put the content on the location pages as shown below, but it turns out that some of the pages (such as Bowser's Castle) were so long that they could not have another long list added.

The quotes come from the Paper Mario Text Dump by Rew, but I have personally verified their intended usage by playing the game.

Koopa Bros. Fortress#Characters found Check mark.svg
Mt. Rugged#Characters found Check mark.svg
Boo's Mansion#Characters found Check mark.svg
Dry Dry Desert (Paper Mario)#Characters found Check mark.svg
Starborn Valley#Characters found Check mark.svg
Star Haven#Characters found Check mark.svg
Koopa Village#Characters found Check mark.svg
Gusty Gulch#Characters found Check mark.svg
Shiver City#Characters found
Flower Fields#Characters found
Dry Dry Outpost#Characters found Done by LadySophie17 (talk). Layout is superior to mine.
Bowser's Castle#Characters found
Peach's Castle#Characters found
Toad Town#Characters found
Mysterious code
line = s => `* "''${s}''"`

function block(l) {
    [title, tattle, ...quotes] = l;
    return `|-\n|style="text-align:center"|[[File:PM Bob-Omb Red.png]]<br>${title}\n|data-label="Quotes" style="font-size:90%"|\n${quotes.map(line).join('\n')}\n|data-label="Goombario's Tattle" style="font-size:90%"|\n${line(tattle)}`
}

function f(s) {
    blocks=s.split('\n\n').map(x=>x.split('\n')).map(block).join('\n')
    console.log(blocks)
}


f(`Character A
Tattle
Quote 1
Quote 2

Character B
Tattle
Quote 1
Quote 2`)