1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 21:02:15 +00:00
Florian Bouillon e500777516 Started to add variants information for the two most recent sets
Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-07-21 12:16:52 +02:00

82 lines
1.8 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 '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Entei",
fr: "Entei",
es: "Entei",
it: "Entei",
pt: "Entei",
de: "Entei"
},
illustrator: "kodama",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Fire"],
attacks: [{
name: {
en: "Heat Dash",
fr: "Bouffée de Chaleur",
es: "Carga Ardiente",
it: "Teporcorsa",
pt: "Arremetida de Calor",
de: "Hitzespurt"
},
effect: {
en: "You may attach a Fire Energy card from your hand to this Pokémon.",
fr: "Vous pouvez attacher une carte Énergie Fire de votre main à ce Pokémon.",
es: "Puedes unir 1 carta de Energía Fire de tu mano a este Pokémon.",
it: "Puoi assegnare a questo Pokémon una carta Energia Fire dalla tua mano.",
pt: "Você pode ligar 1 carta de Energia Fire da sua mão a este Pokémon.",
de: "Du kannst 1 Fire-Energiekarte aus deiner Hand an dieses Pokémon anlegen."
},
damage: 30,
cost: ["Fire"]
}, {
name: {
en: "Fire Fang",
fr: "Crocs Feu",
es: "Colmillo Ígneo",
it: "Rogodenti",
pt: "Presas de Fogo",
de: "Feuerzahn"
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
es: "El Pokémon Activo de tu rival pasa a estar Quemado.",
it: "Il Pokémon attivo del tuo avversario viene bruciato.",
pt: "O Pokémon Ativo do seu oponente agora está Queimado.",
de: "Das Aktive Pokémon deines Gegners ist jetzt verbrannt."
},
damage: 90,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2,
regulationMark: "E",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
}
}
export default card