1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-15 08:59:18 +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,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2011bw: Set = {
id: "2011bw",
name: {
en: "Macdonald's Collection 2011",
fr: "Collection Macdonald 2011"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2011-06-17"
}
export default s2011bw

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2012bw: Set = {
id: "2012bw",
name: {
en: "Macdonald's Collection 2012",
fr: "Collection Macdonald 2012"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2012-06-15"
}
export default s2012bw

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2013bw: Set = {
id: "2013bw",
name: {
// en: Not Available outer France
fr: "Collection Macdonald 2013"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2013-11-01"
}
export default s2013bw

View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2013'
const card: Card = {
name: {
fr: "Givrali",
},
illustrator: "Rya Ueda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
471,
],
hp: 90,
types: [
"Water",
],
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
fr: "Vive-Attaque",
},
effect: {
fr: "Lancez une pièce. Si c'est face, cetter attaque inflige 30 dégâts supplémentaires.",
},
damage: "10+",
},
{
cost: [
"Water",
"Colorless",
],
name: {
fr: "ranvoi d'Énergie",
},
effect: {
fr: "Déplacez une Énergie de ce Pokémon vers 1 de vos Pokémon de Banc.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Metal",
value: "x2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2014xy: Set = {
id: "2014xy",
name: {
en: "Macdonald's Collection 2014",
fr: "Collection Macdonald 2014"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2014-05-23"
}
export default s2014xy

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2015xy: Set = {
id: "2015xy",
name: {
en: "Macdonald's Collection 2015",
fr: "Collection Macdonald 2015"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2015-11-27"
}
export default s2015xy

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2016xy: Set = {
id: "2016xy",
name: {
en: "Macdonald's Collection 2016",
fr: "Collection Macdonald 2016"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2016-08-20"
}
export default s2016xy

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2017sm: Set = {
id: "2017sm",
name: {
en: "Macdonald's Collection 2017",
fr: "Collection Macdonald 2017"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2017-08-03"
}
export default s2017sm

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2018sm: Set = {
id: "2018sm",
name: {
en: "Macdonald's Collection 2018",
fr: "Collection Macdonald 2018"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2018-10-19"
}
export default s2018sm

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2019sm: Set = {
id: "2019sm",
name: {
en: "Macdonald's Collection 2019",
fr: "Collection Macdonald 2019"
,
},
serie: serie,
cardCount: {
total: 12,
official: 12
},
releaseDate: "2019-10-15"
}
export default s2019sm

View File

@ -0,0 +1,22 @@
import { Set } from '../../interfaces'
import serie from '../McDonald\'s Collection'
const s2021swsh: Set = {
id: "2021swsh",
name: {
en: "Macdonald's Collection 2021",
fr: "Collection Macdonald 2021"
,
},
serie: serie,
cardCount: {
total: 25,
official: 25
},
releaseDate: "2021-02-09"
}
export default s2021swsh

View File

@ -0,0 +1,51 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Bulbasaur",
},
illustrator: "Sanosuke Sakuma",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
1,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Razor Leaf",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "x2"
},
],
retreat: 2,
}
export default card

View File

@ -0,0 +1,53 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Cyndaquil",
fr: "Héricendre",
},
illustrator: "kirisAki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
155,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hammer In",
fr: "Enfoncement",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,55 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Torchic",
fr: "Poussifeu",
},
illustrator: "sui",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
255,
],
hp: 60,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Ember",
fr: "Flammèche",
},
effect: {
en: "Flip a coin. If tails, discard a Fire Energy attached to this Pokémon.",
fr: "Lancez une pièce. Si c'est pile, défaussez une Énergie Fire attachée à ce Pokémon.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,58 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Monferno",
fr: "Chimpenfeu",
},
illustrator: "Shigenori Negishi",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
391,
],
hp: 80,
types: [
"Fire",
],
evolveFrom: {
en: "Chimchar",
fr: "Ouisticram",
},
stage: "Stage1",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Super Singe",
fr: "Super Roussi",
},
effect: {
en: "Your opponent's Active Pokémon is now Burned.",
fr: "Le Pokémon Actif de votre adversaire est maintenant Brûlé.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,56 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Tepig",
fr: "Gruikui",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
498,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Ember",
fr: "Flammèche",
},
effect: {
en: "Discard an Energy attached to this Pokémon.",
fr: "Défaussez une Énergie attachée à ce Pokémon.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 2,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Fennekin",
fr: "Feunnec",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
653,
],
hp: 60,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Scratch",
fr: "Griffe",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Live Coal",
fr: "Charbon Mutant",
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Litten",
fr: "Flamiaou",
},
illustrator: "Akira Komayama",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
725,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Bite",
fr: "Morsure",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Flare",
fr: "Flamboiement",
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,53 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Scorbunny",
fr: "Flambino",
},
illustrator: "Hitoshi Ariga",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Fire",
],
name: {
en: "Super Singe",
fr: "Super Roussi",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Burned.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Brûlé.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,55 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Squirtle",
fr: "Carapuce",
},
illustrator: "tetsuya koizumi",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
7,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Bubble",
fr: "Écume",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si cest face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,55 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Totodile",
fr: "Kaiminus",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
158,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Fury Strikes",
fr: "Attaques Furieuses",
},
effect: {
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de côtés face.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Mudkip",
fr: "Gobou",
},
illustrator: "Aya Kusube",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
258,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Tackle",
fr: "Charge",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Mud-Slap",
fr: "Coud'Boue",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,52 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Chikorita",
},
illustrator: "sowsow",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
152,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Mini Drain",
},
effect: {
en: "Heal 10 damage from this Pokémon.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "x2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Piplup",
fr: "Tiplouf",
},
illustrator: "Shibuzoh.",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
393,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Peck",
fr: "Picpic",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Wave Splash",
fr: "Grosse Vague",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,56 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Oshawott",
fr: "Moustillon",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
501,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Water Pulse",
fr: "Vibraqua",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Asleep.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Endormi.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Froakie",
fr: "Grenousse",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
656,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Pound",
fr: "Écras'Face",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Water Drip",
fr: "Goutte à Goutte",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Popplio",
fr: "Otaquin",
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
728,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Pound",
fr: "ÉcrasFace",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Water Gun",
fr: "Pistolet à O",
},
damage: 20,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,54 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Sobble",
fr: "Larméléon",
},
illustrator: "Mizue",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Bind",
fr: "Étreinte",
},
effect: {
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Pikachu",
fr: "Pikachu",
},
illustrator: "Sanosuke Sakuma",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 60,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Meal Time",
fr: "À Belles Dents",
},
effect: {
en: "Flip a coin until you get tails. For each heads, draw a card.",
fr: "Lancez une pièce jusquà ce que vous obteniez un côté pile. Pour chaque côté face, piochez une carte.",
},
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Gnaw",
fr: "Ronge",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fightning",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,53 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Treecko",
},
illustrator: "Akira Komayama",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
252,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Quick Attack",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 more damage.",
},
damage: "10+",
},
],
weaknesses: [
{
type: "Fire",
value: "x2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,64 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Turtwig",
},
illustrator: "OOYAMA",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
1,
],
hp: 80,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Tackle",
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Razor Leaf",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "x2"
},
],
retreat: 2,
}
export default card

View File

@ -0,0 +1,61 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Snivy",
fr: "Vipélierre",
},
illustrator: "Ken Sugimori",
rarity: "None",
category: "Pokemon",
set: Set,
dexId: [
495,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Slam",
fr: "Souplesse",
},
effect: {
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts multipliés par le nombre de côtés face.",
},
damage: "20x",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Chespin",
fr: "Marisson",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
650,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Vine Whip",
fr: "Fouet Lianes",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Seed Bomb",
fr: "Canon Graine",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Rowlet",
fr: "Brindibou",
},
illustrator: "Megumi Mizutani",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
722,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tackle",
fr: "Charge",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Leafage",
fr: "Feuillage",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,51 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Grookey",
fr: "Ouistempo",
},
illustrator: "kirisAki",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Branch Poke",
fr: "Tapotige",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 1,
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../Macdonald\'s Collection 2021'
const card: Card = {
name: {
en: "Charmander",
fr: "Salamèche",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
4,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
fr: "Griffe",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Flame Tail",
fr: "Queue de Flammes",
},
damage: 20,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
retreat: 1,
}
export default card