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

Added informations (#25)

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2021-05-26 22:20:17 +02:00
committed by GitHub
parent 5dab7afa10
commit dc52152f23
166 changed files with 7775 additions and 0 deletions

View File

@ -0,0 +1,54 @@
import { Card } from '../../../interfaces'
import Set from '../Battle Styles'
const card: Card = {
set: Set,
name: {
en: "Entei",
fr: "Entei"
},
illustrator: "kodama",
rarity: "Rare",
category: "Pokemon",
hp: 130,
types: ["Fire"],
attacks: [{
name: {
en: "Heat Dash",
fr: "Bouffée de Chaleur"
},
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."
},
damage: 30,
cost: ["Fire"]
}, {
name: {
en: "Fire Fang",
fr: "Crocs Feu"
},
effect: {
en: "Your opponents Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé."
},
damage: 90,
cost: ["Fire", "Fire", "Colorless"]
}],
weaknesses: [{
type: "Water",
value: "×2"
}],
retreat: 2
}
export default card