1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,57 @@
import { Card } from '../../../interfaces'
import Set from '../BREAKthrough'
const card: Card = {
name: {
en: "Hippopotas",
fr: "Hippopotas",
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
449,
],
hp: 80,
types: [
"Fightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Fightning",
"Colorless",
"Colorless",
],
name: {
en: "Nose Jet",
fr: "Jet d'Nez",
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
fr: "Si le Pokémon Défenseur essaie d'attaquer pendant le prochain tour de votre adversaire, ce dernier lance une pièce. Si cest pile, son attaque ne fait rien.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 3,
}
export default card