1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-30 03:29:51 +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,65 @@
import { Card } from '../../../interfaces'
import Set from '../Neo Destiny'
const card: Card = {
name: {
en: "Light Arcanine",
},
illustrator: "Atsuko Nishida",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
59,
],
hp: 100,
types: [
"Fire",
],
evolveFrom: {
en: "Growlithe",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Drive Off",
},
effect: {
en: "As long as Light Arcanine is your Active Pokémon, once during your turn (before your attack), if your opponent has any Benched Pokémon, he or she chooses 1 of them and switches it with the Defending Pokémon. This power can't be used while Light Arcanine is Asleep, Confused, or Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Gentle Flames",
},
effect: {
en: "If the Defending Pokémon is a Baby Pokémon, this attack does 10 damage instead of 50. If the Defending Pokémon is a Basic Pokémon, this attack does 30 damage instead of 50.",
},
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card