Page 5 of 21 FirstFirst ... 3456715 ... LastLast
Results 41 to 50 of 208
  1. #41
    And if he's looking for employees... ;D

  2. This post has been liked by:


  3. #42
    Quote Originally Posted by Ghostwriter View Post
    Congrats Gigi (can I call you that?)~ ^^
    Of course! As my user title states, "I'm Gigi" =P

    I just looked at the breeding thread. We now have 4 yellow Absol XD
    Mewtwo banner and avatar by Pokemon Trainer Sarah!

    'I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are.' -Mewtwo

    My Art! | ASB Stats | My Nuzlocke

  4. #43
    Kalos Champion Corey Corey's Avatar
    Join Date
    Feb 2013
    Location
    Shalour City
    Posts
    6,977
    I'd say Megas could either be like VPP, where they're optional and purely for aesthetic, or they could be something special. I really don't have any ideas. ;-; Perhaps a Mega Stone could be an item you buy that functions like multiple items, but at a slightly lower cost than all the items individually. It's really up to you, this is your thing after all! :)

    |||||||||

  5. #44
    formerly Speed-X SassySnivy's Avatar
    Join Date
    Apr 2013
    Location
    USA
    Posts
    4,686
    I know that this is up to me,.I just enjoy seeing what others have to say / their suggestions, opinions, etc. ^^

    Greninja: Axibians | Gengar: Speed's ORAS Emporium! | Malamar: Picarto | Roserade: Speed's Pixel Cluster | Gliscor: ASB Stats | Tentacruel: Pokemon Prism Stats | Drapion: VPP Stats | Mega Sableye: Recolored Shiny XYORAS Icon Sprites | Flygon: URPG Stats | Snivy: Viridian Reference | Treecko: Link Vault | Shiny Whismur: All shiny Pokemon
    Pfp by my friend Muerte Verde
    ------------

  6. #45
    *waves* I coded a thing that'll tell you what breeding combinations will produce if you're like me and wondering what to breed C: Only input the colors of compatible Pokemon though, because it just takes color input. Underlined colors are one of the main 12 colors. The code outputs a table with males are on the left and females are on top. To change what colors are being used edit the "female=[#,#];" and "male=[#,#];" lines at the top. Add in your Pokemon's colors with a comma following each C:
    HTML Code:
    <script>
    female=[0,30,60,90,120,150,180,210,240,270,300,330];
    male=[0,30,60,90,120,150,180,210,240,270,300,330];
    x="<table border='1'>";
    for(i=0;i<=male.length;i++){
    	x+="<tr>";
    	for(j=0;j<=female.length;j++){
    		x+="<td>";
    		if(i==0 && j==0) x+="<b>M/F</b>"; //[0,0]
    		else if(i==0) x+="<b>"+clr(female[j-1])+"</b>"; //female header
    		else if(j==0) x+="<b>"+clr(  male[i-1])+"</b>"; //male header
    		else {
    			f=female[j-1], m=male[i-1];
    			if(f==m) x+=clr(f);
    			else {
    				val=(f+m)/2;
    
    				high=f,low=m;
    				if(f<m) high=m,low=f;
    
    				if(high-low==180) x+="Grey";
    				else{
    					val2=((360-high)+low)/2;
    					val3=val2+high;
    					if(val2+high>360) val3=val2+low;
    
    					if(val-low<val2) x+=clr(val);
    					else x+=clr(val3);
    				}
    			}
    		} x+"</td>";
    	} x+="</tr>";
    } x+="</table>";
    document.write(x);
    function clr(num){
    if(num%30==0) return "<span style='color:hsl("+num+",100%,50%)'><u>"+num+"</u></span>";
    return "<span style='color:hsl("+num+",100%,50%)'>"+num+"</span>";
    }</script>
    Let me know if there's any issues with what the numbers are spitting out! If you need a place to paste the code to use it, I recommend this site.
    Mewtwo banner and avatar by Pokemon Trainer Sarah!

    'I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are.' -Mewtwo

    My Art! | ASB Stats | My Nuzlocke

  7. #46
    formerly Speed-X SassySnivy's Avatar
    Join Date
    Apr 2013
    Location
    USA
    Posts
    4,686
    DFSKJFSLFKDNJKNFjdnFJhdfiuhawenfewbufbw nc OH MY GOD THAT IS SO COOL 8D
    Did you write up that entire script yourself? o A o

    But nonetheless I actually know of a really cool site that allows for semi-permanent HTML hosting, called pasteHTML. Click here to see the table!

    Thank you so freaking much. I am TOTALLY adding that to the Breeding Center OP. 8D

    Greninja: Axibians | Gengar: Speed's ORAS Emporium! | Malamar: Picarto | Roserade: Speed's Pixel Cluster | Gliscor: ASB Stats | Tentacruel: Pokemon Prism Stats | Drapion: VPP Stats | Mega Sableye: Recolored Shiny XYORAS Icon Sprites | Flygon: URPG Stats | Snivy: Viridian Reference | Treecko: Link Vault | Shiny Whismur: All shiny Pokemon
    Pfp by my friend Muerte Verde
    ------------

  8. #47
    Glad I could help! ^-^ And yes I coded that myself while watching Sharknado 2 C: Was looking to see what combinations my Absols could make (so I narrowed it down to just the male and female colors I had). I might make some more adjustments down the line to make it more user friendly though (like making it so you can add/remove colors)

    Though for some reason I can't see the table when I click your link D:
    Mewtwo banner and avatar by Pokemon Trainer Sarah!

    'I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are.' -Mewtwo

    My Art! | ASB Stats | My Nuzlocke

  9. #48
    formerly Speed-X SassySnivy's Avatar
    Join Date
    Apr 2013
    Location
    USA
    Posts
    4,686
    I had to manually copy that link from my phone to my computer because work has pasteHTML carelessly filtered out. >_> What do you end up seeing?

    Greninja: Axibians | Gengar: Speed's ORAS Emporium! | Malamar: Picarto | Roserade: Speed's Pixel Cluster | Gliscor: ASB Stats | Tentacruel: Pokemon Prism Stats | Drapion: VPP Stats | Mega Sableye: Recolored Shiny XYORAS Icon Sprites | Flygon: URPG Stats | Snivy: Viridian Reference | Treecko: Link Vault | Shiny Whismur: All shiny Pokemon
    Pfp by my friend Muerte Verde
    ------------

  10. #49
    Absolutely nothing, a blank screen.
    I can post the code on one of my sites and give you the link to use. I'm currently in the process of updating it as well C:

    EDIT: here you go! http://giginuzlocke.weebly.com/prism.html
    Last edited by PTGigi; 01-19-2015 at 02:46 AM.
    Mewtwo banner and avatar by Pokemon Trainer Sarah!

    'I see now that the circumstances of one's birth are irrelevant; it is what you do with the gift of life that determines who you are.' -Mewtwo

    My Art! | ASB Stats | My Nuzlocke

  11. #50
    growing strong Pokemon Trainer Sarah's Avatar
    Site Editor

    Senior Administrator

    Join Date
    Feb 2013
    Location
    Route 1
    Posts
    10,750
    That chart is really impressive Gigi! :O
    GCEA


Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •