1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00

74 lines
1.4 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Secret Wonders'
const card: Card = {
name: {
en: "Arcanine",
fr: "Arcanin",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
59,
],
hp: 100,
types: [
"Fire",
],
evolveFrom: {
en: "Growlithe",
fr: "Caninos",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Flame Dash",
fr: "Ruée enflammée",
},
effect: {
en: "Once during your turn, when you play Arcanine from your hand to evolve 1 of your Benched Pokémon, you may switch Arcanine with 1 of your Active Pokémon. If you do, you may move any number of Energy cards attached to that Pokémon to Arcanine.",
fr: "Une seule fois lors de votre tour, lorsque vous jouez Arcanin de votre main pour évoluer 1 des Pokémon de votre Banc, vous pouvez échanger Arcanin avec 1 de vos Pokémon Actifs. Déplacez alors autant de cartes Énergie attachées à ce Pokémon que vous voulez sur Arcanin.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
"Colorless",
],
name: {
en: "Inferno Onrush",
fr: "Torrent d'enfer",
},
effect: {
en: "Arcanine does 40 damage to itself.",
fr: "Arcanin s'inflige 40 dégâts.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Water",
value: "+30"
},
],
retreat: 2,
}
export default card