1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 04:49:19 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../Next Destinies'
const card: Card = {
name: {
en: "Arcanine",
fr: "Arcanin",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
59,
],
hp: 130,
types: [
"Fire",
],
evolveFrom: {
en: "Growlithe",
fr: "Caninos",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Blazing Mane",
fr: "Crinière Brûlante",
},
effect: {
en: "If this Pokémon is your Active Pokémon and is damaged by an opponent's attack (even if this Pokémon is Knocked Out),the Attacking Pokémon is now Burned.",
fr: "Si ce Pokémon est votre Pokémon Actif et qu'il subit les dégâts d'une attaque de votre adversaire (même si ce Pokémon est mis K.O.), le Pokémon Attaquant est maintenant Brûlé.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Fire Spin",
fr: "Danseflamme",
},
effect: {
en: "Flip a coin. If tails, discard 2 Energy attached to this Pokémon.",
fr: "Lancez une pièce. Si c'est pile, défaussez 2 Énergies attachées à ce Pokémon.",
},
damage: 100,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 3,
}
export default card