This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"normal": { | |
"normal": 1, | |
"fire": 1, | |
"water": 1, | |
"electric": 1, | |
"grass": 1, | |
"ice": 1, | |
"fighting": 1, | |
"poison": 1, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>Pokémon Buttons for each type</title> | |
<link rel="stylesheet" type="text/css" href="./types.css" /> | |
</head> | |
<body> | |
<div class='container'> | |
<span class="type normal left">normal</span> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
hardy: { | |
increase: "none", | |
decrease: "none" | |
}, | |
docile: { | |
increase: "none", | |
decrease: "none" | |
}, | |
serious: { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Used when you need a JSON feed from your other domain. Need a | |
Content-type of application/json, so be sure to use the correct | |
HTTP header in your app (at the other domain). | |
*/ | |
// blabla just don't forget jQuery | |
$.ajax({ | |
url: "another domain generating a JSON", |
NewerOlder