What would you like in a Pokedex?

aRedMoon

Wait for me outside the lines
  • 11,125
    Posts
    21
    Years
    *pokes subject*

    What information would you want to see in a Pokedex?


    I'm planning on making one... but I'm not sure what all needs to be in there. =/
     
    What do you need? Stats, game Pok?dex entries, male-female ratios, breeding info, TM and HM compatibility... all that kind of stuff. Plus pics, and I like to write out a bio for each Pok?mon too. Which is why it takes me ages to construct anything for TPP...
     
    JK, I finished my Ditto ^_^
    *link removed*
    There will also be drop-down menus at the top for Pokemon selection. Did I forget anything?
    How's your's coming along?

    BTW, this is a combined effort of PokeVillage and The WC Connection. JK and I are both coming up with layouts and then we'll see which one we like better. Just wanted to clear up why I'm posting a Pokedex entry when it seems I have nothing to do with the topic :P .
     
    I suck at layouts. v.v;;

    Yours looks good, though I'd like to add the sprites to it. :D

    If you'd like, I'll take yours and then make a script out of it.... because well... mine flopped. v.v *points to Recycle Bin full of deleted "index.php"s*
     
    What's wrong with the sprites? :P

    Anyway, remind me what a script would do? (I know HTML, but I'm totally clueless when it comes to PHP) XD
     
    I mean put in the sprites from all the games. ^^


    And what I want to do is do the Dex in variables... so for each character we'd only need to fill out something like this:

    PHP:
    <?php
    $number = "287";
    $nameeng = "Ditto";
    $nameger = "Ditto";
    $namejap = "Metamon";[/php
    
    ETC.  Makes making the pages really easy, and it's less space.[/color]
     
    DO IT! PLEASE!
    *gets down on knees and begs*
    *bribes JK with cookie* XD

    It took me about 3 hours to do that thing...

    And I was thinking we might just do R/S/E/C/FR/LG, since the other games are kinda outdated and un-necessary; it would a lot of time and space. But it's up to you.
     
    I guess we could do one issue for the new games, and one for the old. O.o;

    New comes first though. :P


    I'll do the code now... and have it up in an hour or so...
     
    Yeah, that's how Serebii does it. It would probably work better that way.

    *sees Joe coming with a lawsuit notice for using his idea*
    *runs*

    Actually, I think just about every Pokedex is like that now. O.o

    EDIT: Should we do it in stages, like do a certain number of Pokemon and put them up? Or should we just wait until we have the thing finished before releasing it?
     
    Hmm, base stats is something Serebii's lacked for some time. Which Pok?mon give which and how many EVs is nice, encounter data and all the flavor text. I assume you intended to have this stuff, but I just thought I'd chime in. ^_^;
     
    Or maybe it could be something along the line of: *pokemonpalace link removed* well, similar, can't be letting u all steal all my cool my dex stuff.. :P
     
    umm...yeah, Steve, but some people around here aren't blessed with your web design skills. I'd kill to have a Dex like that.
    *sees Steve*
    *gets an evil glare in his eye*
    PPNSteve: O.o *runs*
    XD

    And Kairi, we've got all that stuff. Look at the preview.
     
    Mmm, got it done.

    I just gotta upload it... ~_~


    Steve: XD
     
    OK, great! Which brings me to my next question:

    Which one of us is hosting this thing? o.o
     
    I will. :D

    https://dex.pokevillage.net/dex.php?id=287

    The coding is the same as how you did it... and all the information is saved in TXT files.

    The only thing I really changed... was the sprites. XD It's
    /$hnumber/rs-n.png
    /$hnumber/rs-s.png
    /$hnumber/frlg-n.png
    /$hnumber/frlg-s.png

    That way it'll be the same for all the Pokemon. $hnumber is the Hoenn Numbering system.

    If you like how it's done, I'll set up an FTP account and we can get this going. ^_^
     
    Wee~ Here's the 287.txt
    PHP:
    <?php
    $namecaps = "DITTO"; // English Name in Caps
    $number = "287"; // New Number
    $hnumber = "287"; // Hoenn Number (Same as $number)
    $knumber = "132"; // Kanto Number
    $jnumber = "92"; // Jhoto Number
    $ename = "Ditto"; // English Name (Same as $name)
    $jname = "Metamon"; // Japanese Name
    $gname = "Ditto"; // German Name
    $fname = "Metamorphe"; // French Name
    $class = "Transform"; // Classification
    $type1 = "Normal"; // Type #1
    $type2 = ""; // Type #2
    $height = "1'00\""; // Height
    $width = "8.8 lb."; //Width
    $genderratio = "Genderless"; // Male to Female Ratio
    $dexcat = "Town"; // Dex Category
    $color = "Purple"; // ...this says for itself
    $effortpt = "+1 HP"; // Effort Points
    $ability = "Limber"; // See "$color" :P
    $abilityeff = "Cannot be Paralyzed"; // Ability Effect
    $evodata = "<img src='287/rs-n.png'>"; // Evolution Data.  Remember to put the src in single quotes.
    $breedgroup = "Ditto"; // Breeding Group
    $rsflavor = "DITTO rearranges its cell structure to transform itself into other shapes. However, if it tries to transform itself into something by relying on its memory, this POK?MON manages to get details wrong."; // Ruby/Sapphire Flavor Text
    $frflavor = "It can freely recombine its own cellular structure to transform into other life-forms."; // FireRed Flavor Text
    $lgflavor = "Capable of copying an enemy's genetic code to instantly transform itself into a duplicate of the enemy."; // LeafGreen Flavor Text
    
    // Locations and Rarities
    $lruby = "Trade from FR or LG";
    $lsapphire = "Trade from FR or LG";
    $lcolosseum = "Trade from FR or LG";
    $lfr = "Route 13, Route 14, Cinnabar Mansion, Cerulean Cave";
    $llg = "Route 13, Route 14, Cinnabar Mansion, Cerulean Cave";
    $rruby = "None";
    $rsapphire = "None";
    $rcolosseum = "None";
    $rfr = "Common";
    $rlg = "Common";
    
    // Stats
    $bshp = "48";
    $bsattack = "48";
    $bsdefence = "48";
    $bsspatk = "48";
    $bsspdef = "48";
    $bsspeed = "48";
    $hhp = "300";
    $hattack = "175";
    $hdefence = "175";
    $hspatk = "175";
    $hspdef = "175";
    $hspeed = "175";
    $shp = "300";
    $sattack = "195";
    $sdefence = "195";
    $sspatk = "195";
    $sspdef = "195";
    $sspeed = "195";
    $bhp = "300";
    $battack = "214";
    $bdefence = "214";
    $bspatk = "214";
    $bspdef = "214";
    $bspeed = "214";
    
    
    // These variables will require table data.
    $attacks = "<TR BGCOLOR=green><TD COLSPAN=3><FONT SIZE=2 COLOR=white FACE='Tahoma, Arial, Helvetica'><CENTER>Transform</CENTER></FONT></TD><TD COLSPAN=2><FONT SIZE=2 COLOR=white FACE='Tahoma, Arial, Helvetica'><CENTER>Normal</CENTER></FONT></TD><TD COLSPAN=1><FONT SIZE=2 COLOR=white FACE=Tahoma, Arial, Helvetica><CENTER>--</CENTER></FONT></TD></TR>";
    
    $tmhm = "";
    
    $movet = "";
    
    ?>
    Not that hard to understand, ne?

    The only thing to remember is that Quotation Marks " need to be either turned into single quotes ' or have a backwards slash \ put in front of them. ^^;


    *goes to make FTP account and PM details*
     
    What about if we have another TR or TD to put in? I tried making one for Wobbuffet, but I need to make Ruby and Sapphire Flavor Text separate and FR/LG Flavor Text together.
     
    For some of them, Ruby/Sapphire have different Flavour Text? X.x;;

    Didn't know that...
     
    sure!! one tastes red, the other blue.. come on now.. u shoulda known that!
     
    Back
    Top