1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-06 17:27:52 +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: "Herdier",
fr: "Ponchien",
es: "Herdier",
it: "Herdier",
pt: "Herdier",
de: "Terribark"
},
rarity: "Uncommon",
category: "Pokemon",
hp: 100,
types: ["Colorless"],
stage: "Stage1",
illustrator: "kirisAki",
attacks: [{
name: {
en: "Tackle",
fr: "Charge",
es: "Placaje",
it: "Azione",
pt: "Tackle",
de: "Tackle"
},
damage: 30,
cost: ["Colorless", "Colorless"]
}, {
name: {
en: "Take Down",
fr: "Bélier",
es: "Derribo",
it: "Riduttore",
pt: "Take Down",
de: "Bodycheck"
},
effect: {
en: "This Pokémon also does 20 damage to itself.",
fr: "Ce Pokémon sinflige aussi 20 dégâts.",
es: "Este Pokémon también se hace 20 puntos de daño a sí mismo.",
it: "Questo Pokémon infligge anche 20 danni a se stesso.",
pt: "This Pokémon also does 20 damage to itself.",
de: "Dieses Pokémon fügt auch sich selbst 20 Schadenspunkte zu."
},
damage: 80,
cost: ["Colorless", "Colorless", "Colorless"]
}],
weaknesses: [{
type: "Fighting",
value: "×2"
}],
retreat: 2
}
export default card