1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +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

79
data/E-Card/Skyridge/3.ts Normal file
View File

@ -0,0 +1,79 @@
import { Card } from '../../../interfaces'
import Set from '../Skyridge'
const card: Card = {
name: {
en: "Arcanine",
},
illustrator: "Aya Kusube",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
59,
],
hp: 80,
types: [
"Fire",
],
evolveFrom: {
en: "Growlithe",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Energy Recharge",
},
effect: {
en: "When you play Arcanine from your hand to evolve your Active Pokémon, you may flip 3 coins. For each heads, choose a basic energy card from your discard pile and attach it to Arcanine.",
},
},
],
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Shake",
},
effect: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any.",
},
damage: 10,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "White Flames",
},
effect: {
en: "Discard all Energy cards attached to Arcanine.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Water",
value: "<22><>2"
},
],
}
export default card