mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
71 lines
1.1 KiB
TypeScript
71 lines
1.1 KiB
TypeScript
import { Card } from '../../../interfaces'
|
||
import Set from '../Evolving Skies'
|
||
|
||
const card: Card = {
|
||
set: Set,
|
||
|
||
variants: {
|
||
normal: true,
|
||
reverse: true,
|
||
holo: false,
|
||
firstEdition: false
|
||
},
|
||
|
||
name: {
|
||
en: "Hippopotas",
|
||
fr: "Hippopotas",
|
||
es: "Hippopotas",
|
||
it: "Hippopotas",
|
||
pt: "Hippopotas",
|
||
de: "Hippopotas"
|
||
},
|
||
|
||
rarity: "Common",
|
||
category: "Pokemon",
|
||
hp: 100,
|
||
types: ["Fighting"],
|
||
stage: "Basic",
|
||
illustrator: "Yuya Oka",
|
||
|
||
attacks: [{
|
||
name: {
|
||
en: "Tackle",
|
||
fr: "Charge",
|
||
es: "Placaje",
|
||
it: "Azione",
|
||
pt: "Tackle",
|
||
de: "Tackle"
|
||
},
|
||
|
||
damage: 30,
|
||
cost: ["Fighting", "Colorless"]
|
||
}, {
|
||
name: {
|
||
en: "Mud Shot",
|
||
fr: "Tir de Boue",
|
||
es: "Disparo Lodo",
|
||
it: "Colpodifango",
|
||
pt: "Mud Shot",
|
||
de: "Lehmschuss"
|
||
},
|
||
|
||
damage: 50,
|
||
cost: ["Fighting", "Fighting", "Colorless"]
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: "Grass",
|
||
value: "×2"
|
||
}],
|
||
|
||
retreat: 4,
|
||
|
||
description: {
|
||
en: "This Pokémon is active during the day and passes the cold desert nights burrowed snugly into the sand."
|
||
},
|
||
|
||
dexId: [449],
|
||
regulationMark: "E"
|
||
}
|
||
|
||
export default card |