1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-07 09:47:51 +00:00
Florian Bouillon b46b2c4fb9
Updated Evolving Skies with attacks and other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-08-28 16:54:37 +02:00

73 lines
1.3 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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: "Hippowdon",
fr: "Hippodocus",
es: "Hippowdon",
it: "Hippowdon",
pt: "Hippowdon",
de: "Hippoterus"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 150,
types: ["Fighting"],
stage: "Stage1",
illustrator: "Eri Yamaki",
attacks: [{
name: {
en: "Hammer In",
fr: "Enfoncement",
es: "Martillear",
it: "Martello",
pt: "Hammer In",
de: "Einhämmern"
},
damage: 120,
cost: ["Fighting", "Fighting", "Colorless"]
}, {
name: {
en: "Sand Press",
fr: "Pression Sableuse",
es: "Presión de Arena",
it: "Silicopressa",
pt: "Sand Press",
de: "Sandpresse"
},
effect: {
en: "Discard 2 Energy from this Pokémon.",
fr: "Défaussez 2 Énergies de ce Pokémon.",
es: "Descarta 2 Energías de este Pokémon.",
it: "Scarta due Energie da questo Pokémon.",
pt: "Discard 2 Energy from this Pokémon.",
de: "Lege 2 Energien von diesem Pokémon auf deinen Ablagestapel."
},
damage: 220,
cost: ["Fighting", "Fighting", "Fighting", "Colorless"]
}],
weaknesses: [{
type: "Grass",
value: "×2"
}],
retreat: 4
}
export default card