mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-18 18:29:19 +00:00
87
cards/xy/xy0/1.ts
Normal file
87
cards/xy/xy0/1.ts
Normal file
@ -0,0 +1,87 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-1",
|
||||
localId: 1,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Weedle",
|
||||
fr: "Aspicot",
|
||||
},
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 13,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/1/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/1/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/1/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/1/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 48,
|
||||
name: "Akira Komayama"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "String Shot",
|
||||
fr: "Sécrétion",
|
||||
},
|
||||
text: {
|
||||
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: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
103
cards/xy/xy0/10.ts
Normal file
103
cards/xy/xy0/10.ts
Normal file
@ -0,0 +1,103 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-10",
|
||||
localId: 10,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Delphox",
|
||||
fr: "Goupelin",
|
||||
},
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 655,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/10/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/10/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/10/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/10/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Braixen",
|
||||
fr: "Roussil",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Will-O-Wisp",
|
||||
fr: "Feu Follet",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fire Blast",
|
||||
fr: "Déflagration",
|
||||
},
|
||||
text: {
|
||||
en: "Discard an Energy attached to this Pokémon.",
|
||||
fr: "Défaussez une Énergie attachée à ce Pokémon.",
|
||||
},
|
||||
damage: 120
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/xy/xy0/11.ts
Normal file
100
cards/xy/xy0/11.ts
Normal file
@ -0,0 +1,100 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-11",
|
||||
localId: 11,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Panpour",
|
||||
fr: "Flotajou",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 515,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/11/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/11/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/11/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/11/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 19,
|
||||
name: "Shin Nagasawa"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
},
|
||||
text: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fury Swipes",
|
||||
fr: "Combo-Griffe",
|
||||
},
|
||||
text: {
|
||||
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: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/xy/xy0/12.ts
Normal file
93
cards/xy/xy0/12.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-12",
|
||||
localId: 12,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Froakie",
|
||||
fr: "Grenousse",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 656,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/12/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/12/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/12/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/12/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Pound",
|
||||
fr: "Écras'Face",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Water Drip",
|
||||
fr: "Goutte à Goutte",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
101
cards/xy/xy0/13.ts
Normal file
101
cards/xy/xy0/13.ts
Normal file
@ -0,0 +1,101 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-13",
|
||||
localId: 13,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Frogadier",
|
||||
fr: "Croâporal",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 657,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/13/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/13/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/13/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/13/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Froakie",
|
||||
fr: "Grenousse",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Water Drip",
|
||||
fr: "Goutte à Goutte",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Aqua Wave",
|
||||
fr: "Aqua-Vague",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 20 more damage for each heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
101
cards/xy/xy0/14.ts
Normal file
101
cards/xy/xy0/14.ts
Normal file
@ -0,0 +1,101 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-14",
|
||||
localId: 14,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Greninja",
|
||||
fr: "Amphinobi",
|
||||
},
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 658,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/14/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/14/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/14/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/14/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Frogadier",
|
||||
fr: "Croâporal",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER
|
||||
],
|
||||
name: {
|
||||
en: "Mat Block",
|
||||
fr: "Tatamigaeshi",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, discard an Energy attached to your opponent's Active Pokémon.",
|
||||
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée au Pokémon Actif de votre adversaire.",
|
||||
},
|
||||
damage: 40
|
||||
},{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Aqua Edge",
|
||||
fr: "Aqua-Dague",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
84
cards/xy/xy0/15.ts
Normal file
84
cards/xy/xy0/15.ts
Normal file
@ -0,0 +1,84 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-15",
|
||||
localId: 15,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Clauncher",
|
||||
fr: "Flingouste",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
dexId: 692,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/15/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/15/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/15/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/15/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Water Gun",
|
||||
fr: "Pistolet à O",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
87
cards/xy/xy0/16.ts
Normal file
87
cards/xy/xy0/16.ts
Normal file
@ -0,0 +1,87 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-16",
|
||||
localId: 16,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Poochyena",
|
||||
fr: "Medhyèna",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 261,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/16/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/16/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/16/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/16/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 3,
|
||||
name: "Mizue"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Bite",
|
||||
fr: "Morsure",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
94
cards/xy/xy0/17.ts
Normal file
94
cards/xy/xy0/17.ts
Normal file
@ -0,0 +1,94 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-17",
|
||||
localId: 17,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Mightyena",
|
||||
fr: "Grahyèna",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 262,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/17/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/17/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/17/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/17/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Poochyena",
|
||||
fr: "Medhyèna",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Hard Bite",
|
||||
fr: "Morsure Profonde",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
86
cards/xy/xy0/18.ts
Normal file
86
cards/xy/xy0/18.ts
Normal file
@ -0,0 +1,86 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-18",
|
||||
localId: 18,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Inkay",
|
||||
fr: "Sepiatop",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
dexId: 686,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/18/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/18/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/18/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/18/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.DARKNESS
|
||||
],
|
||||
name: {
|
||||
en: "Peck",
|
||||
fr: "Picpic",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
96
cards/xy/xy0/19.ts
Normal file
96
cards/xy/xy0/19.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-19",
|
||||
localId: 19,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pawniard",
|
||||
fr: "Scalpion",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
dexId: 624,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/19/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/19/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/19/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/19/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.METAL
|
||||
],
|
||||
name: {
|
||||
en: "Pierce",
|
||||
fr: "Transpercement",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Cut",
|
||||
fr: "Coupe",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/xy/xy0/2.ts
Normal file
100
cards/xy/xy0/2.ts
Normal file
@ -0,0 +1,100 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-2",
|
||||
localId: 2,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pansage",
|
||||
fr: "Feuillajou",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 511,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/2/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/2/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/2/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/2/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 8,
|
||||
name: "Masakazu Fukuda"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
},
|
||||
text: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fury Swipes",
|
||||
fr: "Combo-Griffe",
|
||||
},
|
||||
text: {
|
||||
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: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
104
cards/xy/xy0/20.ts
Normal file
104
cards/xy/xy0/20.ts
Normal file
@ -0,0 +1,104 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-20",
|
||||
localId: 20,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Bisharp",
|
||||
fr: "Scalproie",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
dexId: 625,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/20/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/20/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/20/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/20/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pawniard",
|
||||
fr: "Scalpion",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.METAL
|
||||
],
|
||||
name: {
|
||||
en: "Wicked Jab",
|
||||
fr: "Piqûre Infernale",
|
||||
},
|
||||
text: {
|
||||
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
|
||||
},{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Metal Claw",
|
||||
fr: "Griffe Acier",
|
||||
},
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
91
cards/xy/xy0/21.ts
Normal file
91
cards/xy/xy0/21.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-21",
|
||||
localId: 21,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Honedge",
|
||||
fr: "Monorpale",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
dexId: 679,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/21/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/21/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/21/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/21/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Continuous Slash",
|
||||
fr: "Tranche Sans Fin",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
|
||||
fr: "Lancez une pièce jusqu'à ce que vous obteniez un côté pile. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
87
cards/xy/xy0/22.ts
Normal file
87
cards/xy/xy0/22.ts
Normal file
@ -0,0 +1,87 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-22",
|
||||
localId: 22,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Snubbull",
|
||||
fr: "Snubbull",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.FAIRY,
|
||||
],
|
||||
|
||||
dexId: 209,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/22/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/22/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/22/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/22/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 15,
|
||||
name: "Naoki Saito"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FAIRY,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
fr: "Coup d'Boule",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.METAL,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.DARKNESS,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
105
cards/xy/xy0/23.ts
Normal file
105
cards/xy/xy0/23.ts
Normal file
@ -0,0 +1,105 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-23",
|
||||
localId: 23,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Granbull",
|
||||
fr: "Granbull",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.FAIRY,
|
||||
],
|
||||
|
||||
dexId: 210,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/23/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/23/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/23/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/23/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Snubbull",
|
||||
fr: "Snubbull",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 8,
|
||||
name: "Masakazu Fukuda"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FAIRY,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
fr: "Coup d'Boule",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.FAIRY,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Double Stomp",
|
||||
fr: "Double Écrasement",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 20 more damage for each heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 20 dégâts supplémentaires pour chaque côté face.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.METAL,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.DARKNESS,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
90
cards/xy/xy0/24.ts
Normal file
90
cards/xy/xy0/24.ts
Normal file
@ -0,0 +1,90 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-24",
|
||||
localId: 24,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Swirlix",
|
||||
fr: "Sucroquin",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FAIRY,
|
||||
],
|
||||
|
||||
dexId: 684,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/24/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/24/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/24/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/24/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FAIRY
|
||||
],
|
||||
name: {
|
||||
en: "Draining Kiss",
|
||||
fr: "Vampibaiser",
|
||||
},
|
||||
text: {
|
||||
en: "Heal 10 damage from this Pokémon.",
|
||||
fr: "Soignez 10 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.METAL,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.DARKNESS,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
86
cards/xy/xy0/25.ts
Normal file
86
cards/xy/xy0/25.ts
Normal file
@ -0,0 +1,86 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-25",
|
||||
localId: 25,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Farfetch'd",
|
||||
fr: "Canarticho",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 83,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/25/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/25/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/25/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/25/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 0,
|
||||
name: "Kagemaru Himeno"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Slash",
|
||||
fr: "Tranche",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
101
cards/xy/xy0/26.ts
Normal file
101
cards/xy/xy0/26.ts
Normal file
@ -0,0 +1,101 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-26",
|
||||
localId: 26,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Snorlax",
|
||||
fr: "Ronflex",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 143,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/26/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/26/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/26/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/26/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 15,
|
||||
name: "Naoki Saito"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Rock Smash",
|
||||
fr: "Éclate-Roc",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Strength",
|
||||
fr: "Force",
|
||||
},
|
||||
damage: 70
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
89
cards/xy/xy0/27.ts
Normal file
89
cards/xy/xy0/27.ts
Normal file
@ -0,0 +1,89 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-27",
|
||||
localId: 27,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Miltank",
|
||||
fr: "Écrémeuh",
|
||||
},
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 241,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/27/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/27/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/27/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/27/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 48,
|
||||
name: "Akira Komayama"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Sitdown Splash",
|
||||
fr: "Grosse Éclaboussure",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
88
cards/xy/xy0/28.ts
Normal file
88
cards/xy/xy0/28.ts
Normal file
@ -0,0 +1,88 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-28",
|
||||
localId: 28,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Skitty",
|
||||
fr: "Skitty",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 300,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/28/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/28/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/28/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/28/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 19,
|
||||
name: "Shin Nagasawa"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Jump On",
|
||||
fr: "Saut",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
85
cards/xy/xy0/29.ts
Normal file
85
cards/xy/xy0/29.ts
Normal file
@ -0,0 +1,85 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-29",
|
||||
localId: 29,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Bidoof",
|
||||
fr: "Keunotor",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 399,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/29/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/29/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/29/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/29/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 10,
|
||||
name: "Kouki Saitou"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Rollout",
|
||||
fr: "Roulade",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/xy/xy0/3.ts
Normal file
93
cards/xy/xy0/3.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-3",
|
||||
localId: 3,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Chespin",
|
||||
fr: "Marisson",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 650,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/3/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/3/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/3/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/3/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS
|
||||
],
|
||||
name: {
|
||||
en: "Vine Whip",
|
||||
fr: "Fouet Lianes",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Seed Bomb",
|
||||
fr: "Canon Graine",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
84
cards/xy/xy0/30.ts
Normal file
84
cards/xy/xy0/30.ts
Normal file
@ -0,0 +1,84 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-30",
|
||||
localId: 30,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Bunnelby",
|
||||
fr: "Sapereau",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 659,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/30/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/30/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/30/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/30/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tackle",
|
||||
fr: "Charge",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
90
cards/xy/xy0/31.ts
Normal file
90
cards/xy/xy0/31.ts
Normal file
@ -0,0 +1,90 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-31",
|
||||
localId: 31,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Fletchling",
|
||||
fr: "Passerouge",
|
||||
},
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 661,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/31/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/31/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/31/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/31/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Razor Wind",
|
||||
fr: "Coupe-Vent",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
fr: "Lancez une pièce. Si c'est pile, cette attaque ne fait rien.",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/xy/xy0/32.ts
Normal file
99
cards/xy/xy0/32.ts
Normal file
@ -0,0 +1,99 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-32",
|
||||
localId: 32,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Furfrou",
|
||||
fr: "Couafarel",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 676,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/32/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/32/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/32/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/32/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tight Jaw",
|
||||
fr: "Mâchoire Serrée",
|
||||
},
|
||||
text: {
|
||||
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
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Sharp Fang",
|
||||
fr: "Croc Aiguisé",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
99
cards/xy/xy0/33.ts
Normal file
99
cards/xy/xy0/33.ts
Normal file
@ -0,0 +1,99 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-33",
|
||||
localId: 33,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Furfrou",
|
||||
fr: "Couafarel",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 676,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/33/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/33/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/33/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/33/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tight Jaw",
|
||||
fr: "Mâchoire Serrée",
|
||||
},
|
||||
text: {
|
||||
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
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Sharp Fang",
|
||||
fr: "Croc Aiguisé",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/xy/xy0/34.ts
Normal file
74
cards/xy/xy0/34.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-34",
|
||||
localId: 34,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Crushing Hammer",
|
||||
fr: "Maillet Écrasant",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/34/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/34/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/34/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/34/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Lancez une pièce. Si c'est face, défaussez une Énergie attachée à l'un des Pokémon de votre adversaire.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/xy/xy0/35.ts
Normal file
74
cards/xy/xy0/35.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-35",
|
||||
localId: 35,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Poké Ball",
|
||||
fr: "Poké Ball",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/35/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/35/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/35/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/35/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Lancez une pièce. Si c'est face, cherchez un Pokémon dans votre deck, montrez-le, puis ajoutez-le à votre main. Mélangez ensuite votre deck.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/xy/xy0/36.ts
Normal file
74
cards/xy/xy0/36.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-36",
|
||||
localId: 36,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pokémon Catcher",
|
||||
fr: "Attrape-Pokémon",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/36/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/36/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/36/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/36/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Lancez une pièce. Si c'est face, échangez l'un des Pokémon de Banc de votre adversaire avec son Pokémon Actif.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/xy/xy0/37.ts
Normal file
74
cards/xy/xy0/37.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-37",
|
||||
localId: 37,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Potion",
|
||||
fr: "Potion",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/37/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/37/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/37/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/37/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Soignez 30 dégâts à l'un de vos Pokémon.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/xy/xy0/38.ts
Normal file
74
cards/xy/xy0/38.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-38",
|
||||
localId: 38,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Switch",
|
||||
fr: "Échange",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/38/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/38/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/38/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/38/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.ITEM,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Échangez votre Pokémon Actif avec l'un de vos Pokémon de Banc.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
74
cards/xy/xy0/39.ts
Normal file
74
cards/xy/xy0/39.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-39",
|
||||
localId: 39,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Tierno",
|
||||
fr: "Tierno",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/39/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/39/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/39/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/39/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.SUPPORTER,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 5,
|
||||
name: "Ken Sugimori"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
name: {},
|
||||
text: {
|
||||
fr: "Piochez 3 cartes.",
|
||||
},
|
||||
}],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
102
cards/xy/xy0/4.ts
Normal file
102
cards/xy/xy0/4.ts
Normal file
@ -0,0 +1,102 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-4",
|
||||
localId: 4,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Quilladin",
|
||||
fr: "Boguérisse",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 651,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/4/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/4/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/4/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/4/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Chespin",
|
||||
fr: "Marisson",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Leech Seed",
|
||||
fr: "Vampigraine",
|
||||
},
|
||||
text: {
|
||||
en: "Heal 10 damage from this Pokémon.",
|
||||
fr: "Soignez 10 dégâts à ce Pokémon.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Needle Arm",
|
||||
fr: "Poing Dard",
|
||||
},
|
||||
damage: 50
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
104
cards/xy/xy0/5.ts
Normal file
104
cards/xy/xy0/5.ts
Normal file
@ -0,0 +1,104 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-5",
|
||||
localId: 5,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Chesnaught",
|
||||
fr: "Blindépique",
|
||||
},
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
dexId: 652,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/5/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/5/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/5/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/5/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Quilladin",
|
||||
fr: "Boguérisse",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Needle Arm",
|
||||
fr: "Poing Dard",
|
||||
},
|
||||
damage: 50
|
||||
},{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Tumbling Attack",
|
||||
fr: "Attaque Trébuchante",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 40 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 40 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 80
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.FIRE,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
84
cards/xy/xy0/6.ts
Normal file
84
cards/xy/xy0/6.ts
Normal file
@ -0,0 +1,84 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-6",
|
||||
localId: 6,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Slugma",
|
||||
fr: "Limagma",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 218,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/6/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/6/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/6/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/6/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 9,
|
||||
name: "Mitsuhiro Arita"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Combustion",
|
||||
fr: "Fournaise",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
100
cards/xy/xy0/7.ts
Normal file
100
cards/xy/xy0/7.ts
Normal file
@ -0,0 +1,100 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-7",
|
||||
localId: 7,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Pansear",
|
||||
fr: "Flamajou",
|
||||
},
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 513,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/7/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/7/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/7/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/7/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 23,
|
||||
name: "Naoyo Kimura"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Collect",
|
||||
fr: "Collecte",
|
||||
},
|
||||
text: {
|
||||
en: "Draw a card.",
|
||||
fr: "Piochez une carte.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Fury Swipes",
|
||||
fr: "Combo-Griffe",
|
||||
},
|
||||
text: {
|
||||
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: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
93
cards/xy/xy0/8.ts
Normal file
93
cards/xy/xy0/8.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-8",
|
||||
localId: 8,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Fennekin",
|
||||
fr: "Feunnec",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 653,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/8/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/8/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/8/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/8/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE
|
||||
],
|
||||
name: {
|
||||
en: "Scratch",
|
||||
fr: "Griffe",
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Live Coal",
|
||||
fr: "Charbon Mutant",
|
||||
},
|
||||
damage: 20
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
102
cards/xy/xy0/9.ts
Normal file
102
cards/xy/xy0/9.ts
Normal file
@ -0,0 +1,102 @@
|
||||
import Card from '../../../interfaces/Card'
|
||||
import Type from '../../../interfaces/Type'
|
||||
import Tag from '../../../interfaces/Tag'
|
||||
import Rarity from '../../../interfaces/Rarity'
|
||||
import AbilityType from '../../../interfaces/AbilityType'
|
||||
import Category from '../../../interfaces/Category'
|
||||
|
||||
const card: Card = {
|
||||
|
||||
// ids
|
||||
id: "xy0-9",
|
||||
localId: 9,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Braixen",
|
||||
fr: "Roussil",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
dexId: 654,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/9/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/9/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy0/9/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy0/9/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Fennekin",
|
||||
fr: "Feunnec",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 4,
|
||||
name: "5ban Graphics"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Firebreathing",
|
||||
fr: "Souffle-Feu",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 20 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 20
|
||||
},{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Flame Tail",
|
||||
fr: "Queue de Flammes",
|
||||
},
|
||||
damage: 60
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.WATER,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Common,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Kalos Starter Set",
|
||||
code: "xy0"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user