1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-26 13:59:18 +00:00

Initial Database

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-02-19 16:19:09 +01:00
commit be94e712b8
12302 changed files with 1142705 additions and 0 deletions

92
cards/bw/bw5/1.ts Normal file
View File

@ -0,0 +1,92 @@
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: "bw5-1",
localId: 1,
// Card informations
name: {
en: "Bulbasaur",
},
hp: 60,
type: [
Type.GRASS,
],
dexId: 1,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/1/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/1/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Tackle",
},
damage: 10
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Razor Leaf",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

83
cards/bw/bw5/10.ts Normal file
View File

@ -0,0 +1,83 @@
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: "bw5-10",
localId: 10,
// Card informations
name: {
en: "Shelmet",
},
hp: 60,
type: [
Type.GRASS,
],
dexId: 616,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/10/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/10/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 49,
name: "Shigenori Negishi"
},
attacks: [{
cost: [
Type.GRASS,
Type.GRASS
],
name: {
en: "Body Slam",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

66
cards/bw/bw5/100.ts Normal file
View File

@ -0,0 +1,66 @@
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: "bw5-100",
localId: 100,
// Card informations
name: {
en: "Rare Candy",
},
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/100/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/100/high.png",
},
},
evolveFrom: {},
tags: [
Tag.ITEM,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
rarity: Rarity.Uncommon,
category: Category.TRAINER,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

66
cards/bw/bw5/101.ts Normal file
View File

@ -0,0 +1,66 @@
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: "bw5-101",
localId: 101,
// Card informations
name: {
en: "Twist Mountain",
},
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/101/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/101/high.png",
},
},
evolveFrom: {},
tags: [
Tag.STADIUM,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
rarity: Rarity.Uncommon,
category: Category.TRAINER,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

66
cards/bw/bw5/102.ts Normal file
View File

@ -0,0 +1,66 @@
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: "bw5-102",
localId: 102,
// Card informations
name: {
en: "Ultra Ball",
},
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/102/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/102/high.png",
},
},
evolveFrom: {},
tags: [
Tag.ITEM,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
rarity: Rarity.Uncommon,
category: Category.TRAINER,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/103.ts Normal file
View 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: "bw5-103",
localId: 103,
// Card informations
name: {
en: "Entei-EX",
},
hp: 180,
type: [
Type.FIRE,
],
dexId: 244,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/103/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/103/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Fire Fang",
},
text: {
en: "The Defending Pokémon is now Burned.",
},
damage: 30
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Grand Flame",
},
text: {
en: "Attach a Fire Energy card from your discard pile to 1 of your Benched Pokémon.",
},
damage: 90
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/104.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-104",
localId: 104,
// Card informations
name: {
en: "Kyogre-EX",
},
hp: 170,
type: [
Type.WATER,
],
dexId: 382,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/104/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/104/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Smash Turn",
},
text: {
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
},
damage: 30
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Dual Splash",
},
text: {
en: "This attack does 50 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/105.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-105",
localId: 105,
// Card informations
name: {
en: "Raikou-EX",
},
hp: 170,
type: [
Type.LIGHTNING,
],
dexId: 243,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/105/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/105/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Thunder Fang",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 30
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Volt Bolt",
},
text: {
en: "Discard all Lightning Energy attached to this Pokémon. This attack does 100 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

99
cards/bw/bw5/106.ts Normal file
View 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: "bw5-106",
localId: 106,
// Card informations
name: {
en: "Groudon-EX",
},
hp: 180,
type: [
Type.FIGHTING,
],
dexId: 383,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/106/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/106/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Tromp",
},
text: {
en: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 20
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Giant Claw",
},
text: {
en: "If the Defending Pokémon already has 2 or more damage counters on it, this attack does 40 more damage.",
},
damage: 80
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/107.ts Normal file
View 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: "bw5-107",
localId: 107,
// Card informations
name: {
en: "Darkrai-EX",
},
hp: 180,
type: [
Type.DARKNESS,
],
dexId: 491,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/107/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/107/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 261,
type: AbilityType.TALENT,
name: {
en: "Dark Cloak",
},
text: {
en: "Each of your Pokémon that has any Darkness Energy attached to it has no Retreat Cost.",
}
}],
attacks: [{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Night Spear",
},
text: {
en: "Does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 90
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

99
cards/bw/bw5/108.ts Normal file
View 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: "bw5-108",
localId: 108,
// Card informations
name: {
en: "Tornadus-EX",
},
hp: 170,
type: [
Type.COLORLESS,
],
dexId: 641,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/108/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/108/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Blow Through",
},
text: {
en: "If there is any Stadium card in play, this attack does 30 more damage.",
},
damage: 30
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Power Blast",
},
text: {
en: "Flip a coin. If tails, discard an Energy attached to this Pokémon.",
},
damage: 100
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.RareUltra,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/109.ts Normal file
View 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: "bw5-109",
localId: 109,
// Card informations
name: {
en: "Gardevoir",
},
hp: 110,
type: [
Type.PSYCHIC,
],
dexId: 282,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/109/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/109/high.png",
},
},
evolveFrom: {
en: "Kirlia",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 819,
type: AbilityType.TALENT,
name: {
en: "Psychic Mirage",
},
text: {
en: "Each basic Psychic Energy attached to your Psychic Pokémon provides PsychicPsychic Energy. You can't apply more than 1 Psychic Mirage Ability at a time.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Mind Shock",
},
text: {
en: "This attack's damage isn't affected by Weakness or Resistance.",
},
damage: 60
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

93
cards/bw/bw5/11.ts Normal file
View 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: "bw5-11",
localId: 11,
// Card informations
name: {
en: "Accelgor",
},
hp: 90,
type: [
Type.GRASS,
],
dexId: 617,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/11/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/11/high.png",
},
},
evolveFrom: {
en: "Shelmet",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Hammer In",
},
damage: 20
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Deck and Cover",
},
text: {
en: "The Defending Pokémon is now Paralyzed and Poisoned. Shuffle this Pokémon and all cards attached to it into your deck.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/110.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-110",
localId: 110,
// Card informations
name: {
en: "Archeops",
},
hp: 130,
type: [
Type.FIGHTING,
],
dexId: 567,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/110/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/110/high.png",
},
},
evolveFrom: {
en: "Archen",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
abilities: [{
id: 452,
type: AbilityType.TALENT,
name: {
en: "Ancient Power",
},
text: {
en: "Each player can't play any Pokémon from his or her hand to evolve his or her Pokémon.",
}
}],
attacks: [{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Rock Slide",
},
text: {
en: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 60
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

66
cards/bw/bw5/111.ts Normal file
View File

@ -0,0 +1,66 @@
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: "bw5-111",
localId: 111,
// Card informations
name: {
en: "Pokémon Catcher",
},
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/111/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/111/high.png",
},
},
evolveFrom: {},
tags: [
Tag.ITEM,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
rarity: Rarity.RareHolo,
category: Category.TRAINER,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

97
cards/bw/bw5/12.ts Normal file
View File

@ -0,0 +1,97 @@
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: "bw5-12",
localId: 12,
// Card informations
name: {
en: "Flareon",
},
hp: 90,
type: [
Type.FIRE,
],
dexId: 136,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/12/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/12/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 29,
name: "Suwama Chiaki"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Sand-Attack",
},
text: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
},
damage: 20
},{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Fire Slash",
},
text: {
en: "You may discard a Fire Energy attached to this Pokémon. If you do, this attack does 30 more damage.",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/13.ts Normal file
View 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: "bw5-13",
localId: 13,
// Card informations
name: {
en: "Entei-EX",
},
hp: 180,
type: [
Type.FIRE,
],
dexId: 244,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/13/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/13/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 17,
name: "Shizurow"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Fire Fang",
},
text: {
en: "The Defending Pokémon is now Burned.",
},
damage: 30
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Grand Flame",
},
text: {
en: "Attach a Fire Energy card from your discard pile to 1 of your Benched Pokémon.",
},
damage: 90
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

83
cards/bw/bw5/14.ts Normal file
View File

@ -0,0 +1,83 @@
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: "bw5-14",
localId: 14,
// Card informations
name: {
en: "Torchic",
},
hp: 50,
type: [
Type.FIRE,
],
dexId: 255,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/14/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/14/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Reckless Charge",
},
text: {
en: "This Pokémon does 10 damage to itself.",
},
damage: 30
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

88
cards/bw/bw5/15.ts Normal file
View 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: "bw5-15",
localId: 15,
// Card informations
name: {
en: "Torchic",
},
hp: 60,
type: [
Type.FIRE,
],
dexId: 255,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/15/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/15/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 32,
name: "Atsuko Nishida"
},
attacks: [{
cost: [
Type.FIRE
],
name: {
en: "Peck",
},
damage: 10
},{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Live Coal",
},
damage: 20
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

97
cards/bw/bw5/16.ts Normal file
View File

@ -0,0 +1,97 @@
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: "bw5-16",
localId: 16,
// Card informations
name: {
en: "Combusken",
},
hp: 80,
type: [
Type.FIRE,
],
dexId: 256,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/16/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/16/high.png",
},
},
evolveFrom: {
en: "Torchic",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 7,
name: "Sumiyoshi Kizuki"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Double Kick",
},
text: {
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
},
damage: 20
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Flamethrower",
},
text: {
en: "Discard an Energy attached to this Pokémon.",
},
damage: 70
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

98
cards/bw/bw5/17.ts Normal file
View File

@ -0,0 +1,98 @@
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: "bw5-17",
localId: 17,
// Card informations
name: {
en: "Blaziken",
},
hp: 140,
type: [
Type.FIRE,
],
dexId: 257,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/17/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/17/high.png",
},
},
evolveFrom: {
en: "Combusken",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 20,
name: "TOKIYA"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Blaze Kick",
},
text: {
en: "Flip a coin. If heads, this attack does 30 more damage. If tails, the Defending Pokémon is now Burned.",
},
damage: 40
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Flamethrower",
},
text: {
en: "Discard an Energy attached to this Pokémon.",
},
damage: 130
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

92
cards/bw/bw5/18.ts Normal file
View File

@ -0,0 +1,92 @@
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: "bw5-18",
localId: 18,
// Card informations
name: {
en: "Torkoal",
},
hp: 90,
type: [
Type.FIRE,
],
dexId: 324,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/18/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/18/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Flame Cloak",
},
text: {
en: "Flip a coin. If heads, attach a Fire Energy card from your discard pile to this Pokémon.",
},
damage: 10
},{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Heat Blast",
},
damage: 60
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/19.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-19",
localId: 19,
// Card informations
name: {
en: "Heatmor",
},
hp: 90,
type: [
Type.FIRE,
],
dexId: 631,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/19/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/19/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Hot Lick",
},
text: {
en: "If the Defending Pokémon is Durant, this attack does 50 more damage.",
},
damage: 10
},{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Firebreathing",
},
text: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
},
damage: 50
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

101
cards/bw/bw5/2.ts Normal file
View 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: "bw5-2",
localId: 2,
// Card informations
name: {
en: "Ivysaur",
},
hp: 90,
type: [
Type.GRASS,
],
dexId: 2,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/2/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/2/high.png",
},
},
evolveFrom: {
en: "Bulbasaur",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 24,
name: "sui"
},
attacks: [{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Sleep Powder",
},
text: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 20
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Poison Powder",
},
text: {
en: "The Defending Pokémon is now Poisoned.",
},
damage: 50
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

90
cards/bw/bw5/20.ts Normal file
View 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: "bw5-20",
localId: 20,
// Card informations
name: {
en: "Larvesta",
},
hp: 80,
type: [
Type.FIRE,
],
dexId: 636,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/20/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/20/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 28,
name: "match"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Ram",
},
damage: 20
},{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Flare",
},
damage: 40
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

83
cards/bw/bw5/21.ts Normal file
View File

@ -0,0 +1,83 @@
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: "bw5-21",
localId: 21,
// Card informations
name: {
en: "Larvesta",
},
hp: 60,
type: [
Type.FIRE,
],
dexId: 636,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/21/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/21/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS
],
name: {
en: "Super Singe",
},
text: {
en: "The Defending Pokémon is now Burned.",
},
damage: 10
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/22.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-22",
localId: 22,
// Card informations
name: {
en: "Volcarona",
},
hp: 110,
type: [
Type.FIRE,
],
dexId: 637,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/22/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/22/high.png",
},
},
evolveFrom: {
en: "Larvesta",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 19,
name: "Shin Nagasawa"
},
abilities: [{
id: 781,
type: AbilityType.TALENT,
name: {
en: "Scorching Scales",
},
text: {
en: "Put 4 damage counters instead of 2 on your opponent's Burned Pokémon between turns.",
}
}],
attacks: [{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Burning Wind",
},
text: {
en: "You may discard an Energy attached to this Pokémon. If you do, the Defending Pokémon is now Burned.",
},
damage: 70
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

93
cards/bw/bw5/23.ts Normal file
View 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: "bw5-23",
localId: 23,
// Card informations
name: {
en: "Slowpoke",
},
hp: 70,
type: [
Type.WATER,
],
dexId: 79,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/23/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/23/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 46,
name: "MAHOU"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Big Yawn",
},
text: {
en: "Both this Pokémon and the Defending Pokémon are now Asleep.",
},
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Shot in the Dark",
},
text: {
en: "Flip 2 coins. If either of them is tails, this attack does nothing.",
},
damage: 20
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/24.ts Normal file
View 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: "bw5-24",
localId: 24,
// Card informations
name: {
en: "Slowbro",
},
hp: 100,
type: [
Type.WATER,
],
dexId: 80,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/24/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/24/high.png",
},
},
evolveFrom: {
en: "Slowpoke",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 782,
type: AbilityType.TALENT,
name: {
en: "Airhead",
},
text: {
en: "If you have 2, 4, or 6 Prize cards left, this Pokémon can't attack.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Lazy Headbutt",
},
text: {
en: "This Pokémon is now Asleep.",
},
damage: 80
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

97
cards/bw/bw5/25.ts Normal file
View File

@ -0,0 +1,97 @@
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: "bw5-25",
localId: 25,
// Card informations
name: {
en: "Vaporeon",
},
hp: 110,
type: [
Type.WATER,
],
dexId: 134,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/25/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/25/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 48,
name: "Akira Komayama"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Muddy Water",
},
text: {
en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 20
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Spiral Drain",
},
text: {
en: "Heal 20 damage from this Pokémon.",
},
damage: 60
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/26.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-26",
localId: 26,
// Card informations
name: {
en: "Kyogre-EX",
},
hp: 170,
type: [
Type.WATER,
],
dexId: 382,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/26/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/26/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 17,
name: "Shizurow"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Smash Turn",
},
text: {
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
},
damage: 30
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Dual Splash",
},
text: {
en: "This attack does 50 damage to 2 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

82
cards/bw/bw5/27.ts Normal file
View File

@ -0,0 +1,82 @@
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: "bw5-27",
localId: 27,
// Card informations
name: {
en: "Piplup",
},
hp: 60,
type: [
Type.WATER,
],
dexId: 393,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/27/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/27/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Fury Attack",
},
text: {
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
},
damage: 10
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/28.ts Normal file
View 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: "bw5-28",
localId: 28,
// Card informations
name: {
en: "Prinplup",
},
hp: 80,
type: [
Type.WATER,
],
dexId: 394,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/28/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/28/high.png",
},
},
evolveFrom: {
en: "Piplup",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 29,
name: "Suwama Chiaki"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Razor Wing",
},
damage: 20
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Fury Attack",
},
text: {
en: "Flip 3 coins. This attack does 30 damage times the number of heads.",
},
damage: 30
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

93
cards/bw/bw5/29.ts Normal file
View 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: "bw5-29",
localId: 29,
// Card informations
name: {
en: "Empoleon",
},
hp: 140,
type: [
Type.WATER,
],
dexId: 395,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/29/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/29/high.png",
},
},
evolveFrom: {
en: "Prinplup",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
abilities: [{
id: 620,
type: AbilityType.TALENT,
name: {
en: "Diving Draw",
},
text: {
en: "Once during your turn (before your attack), you may discard a card from your hand. If you do, draw 2 cards.",
}
}],
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Attack Command",
},
text: {
en: "Does 10 damage times the number of Pokémon in play (both yours and your opponent's).",
},
damage: 10
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

99
cards/bw/bw5/3.ts Normal file
View 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: "bw5-3",
localId: 3,
// Card informations
name: {
en: "Venusaur",
},
hp: 140,
type: [
Type.GRASS,
],
dexId: 3,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/3/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/3/high.png",
},
},
evolveFrom: {
en: "Ivysaur",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
abilities: [{
id: 9,
type: AbilityType.TALENT,
name: {
en: "Floral Scent",
},
text: {
en: "Once during your turn (before your attack), you may search your deck for a Pokémon, reveal it, and put it into your hand. Shuffle your deck afterward.",
}
}],
attacks: [{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Poison Powder",
},
text: {
en: "The Defending Pokémon is now Poisoned.",
},
damage: 70
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/30.ts Normal file
View 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: "bw5-30",
localId: 30,
// Card informations
name: {
en: "Glaceon",
},
hp: 90,
type: [
Type.WATER,
],
dexId: 471,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/30/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/30/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Quick Attack",
},
text: {
en: "Flip a coin. If heads, this attack does 30 more damage.",
},
damage: 10
},{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Reflect Energy",
},
text: {
en: "Move an Energy from this Pokémon to 1 of your Benched Pokémon.",
},
damage: 40
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

83
cards/bw/bw5/31.ts Normal file
View File

@ -0,0 +1,83 @@
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: "bw5-31",
localId: 31,
// Card informations
name: {
en: "Tympole",
},
hp: 60,
type: [
Type.WATER,
],
dexId: 535,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/31/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/31/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Spiral Drain",
},
text: {
en: "Heal 20 damage from this Pokémon.",
},
damage: 20
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

85
cards/bw/bw5/32.ts Normal file
View 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: "bw5-32",
localId: 32,
// Card informations
name: {
en: "Palpitoad",
},
hp: 80,
type: [
Type.WATER,
],
dexId: 536,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/32/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/32/high.png",
},
},
evolveFrom: {
en: "Tympole",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Bubble Beam",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 30
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

82
cards/bw/bw5/33.ts Normal file
View File

@ -0,0 +1,82 @@
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: "bw5-33",
localId: 33,
// Card informations
name: {
en: "Vanillite",
},
hp: 50,
type: [
Type.WATER,
],
dexId: 582,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/33/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/33/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Double Spin",
},
text: {
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
},
damage: 10
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/34.ts Normal file
View 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: "bw5-34",
localId: 34,
// Card informations
name: {
en: "Vanillish",
},
hp: 70,
type: [
Type.WATER,
],
dexId: 583,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/34/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/34/high.png",
},
},
evolveFrom: {
en: "Vanillite",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Triple Spin",
},
text: {
en: "Flip 3 coins. This attack does 20 damage times the number of heads.",
},
damage: 20
},{
cost: [
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Frost Breath",
},
damage: 50
}],
weaknesses: [{
type: Type.METAL,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

86
cards/bw/bw5/35.ts Normal file
View 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: "bw5-35",
localId: 35,
// Card informations
name: {
en: "Ducklett",
},
hp: 60,
type: [
Type.WATER,
],
dexId: 580,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/35/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/35/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 24,
name: "sui"
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Water Pulse",
},
text: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 20
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

99
cards/bw/bw5/36.ts Normal file
View 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: "bw5-36",
localId: 36,
// Card informations
name: {
en: "Swanna",
},
hp: 90,
type: [
Type.WATER,
],
dexId: 581,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/36/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/36/high.png",
},
},
evolveFrom: {
en: "Ducklett",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 3,
name: "Mizue"
},
attacks: [{
cost: [
Type.WATER
],
name: {
en: "Healing Pirouette",
},
text: {
en: "Heal 30 damage from each of your Pokémon.",
},
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Incessant Peck",
},
text: {
en: "Flip a coin until you get tails. This attack does 20 more damage for each heads.",
},
damage: 60
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

97
cards/bw/bw5/37.ts Normal file
View File

@ -0,0 +1,97 @@
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: "bw5-37",
localId: 37,
// Card informations
name: {
en: "Jolteon",
},
hp: 90,
type: [
Type.LIGHTNING,
],
dexId: 135,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/37/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/37/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 7,
name: "Sumiyoshi Kizuki"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Electrigun",
},
text: {
en: "You may discard a Lightning Energy attached to this Pokémon. If you do, this attack does 40 more damage.",
},
damage: 20
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Pin Missile",
},
text: {
en: "Flip 4 coins. This attack does 40 damage times the number of heads.",
},
damage: 40
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/38.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-38",
localId: 38,
// Card informations
name: {
en: "Raikou-EX",
},
hp: 170,
type: [
Type.LIGHTNING,
],
dexId: 243,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/38/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/38/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 17,
name: "Shizurow"
},
attacks: [{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Thunder Fang",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 30
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Volt Bolt",
},
text: {
en: "Discard all Lightning Energy attached to this Pokémon. This attack does 100 damage to 1 of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

92
cards/bw/bw5/39.ts Normal file
View File

@ -0,0 +1,92 @@
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: "bw5-39",
localId: 39,
// Card informations
name: {
en: "Plusle",
},
hp: 60,
type: [
Type.LIGHTNING,
],
dexId: 311,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/39/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/39/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Tag Draw",
},
text: {
en: "Shuffle your hand into your deck. Then, draw 4 cards. If Minun is on your Bench, draw 4 more cards.",
},
},{
cost: [
Type.LIGHTNING
],
name: {
en: "Positive Ion",
},
text: {
en: "Flip a coin. If heads, this attack does 10 more damage.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

84
cards/bw/bw5/4.ts Normal file
View 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: "bw5-4",
localId: 4,
// Card informations
name: {
en: "Scyther",
},
hp: 80,
type: [
Type.GRASS,
],
dexId: 123,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/4/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/4/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Air Slash",
},
text: {
en: "Discard an Energy attached to this Pokémon.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

91
cards/bw/bw5/40.ts Normal file
View 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: "bw5-40",
localId: 40,
// Card informations
name: {
en: "Minun",
},
hp: 60,
type: [
Type.LIGHTNING,
],
dexId: 312,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/40/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/40/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Negative Ion",
},
text: {
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 30 (before applying Weakness and Resistance).",
},
},{
cost: [
Type.LIGHTNING
],
name: {
en: "Electrishower",
},
text: {
en: "This attack does 10 damage to each of your opponent's Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

88
cards/bw/bw5/41.ts Normal file
View 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: "bw5-41",
localId: 41,
// Card informations
name: {
en: "Joltik",
},
hp: 30,
type: [
Type.LIGHTNING,
],
dexId: 595,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/41/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/41/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 46,
name: "MAHOU"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Ram",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Bug Bite",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

79
cards/bw/bw5/42.ts Normal file
View File

@ -0,0 +1,79 @@
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: "bw5-42",
localId: 42,
// Card informations
name: {
en: "Joltik",
},
hp: 30,
type: [
Type.LIGHTNING,
],
dexId: 595,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/42/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/42/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 37,
name: "Miki Tanaka"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Static Shock",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/43.ts Normal file
View 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: "bw5-43",
localId: 43,
// Card informations
name: {
en: "Galvantula",
},
hp: 80,
type: [
Type.LIGHTNING,
],
dexId: 596,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/43/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/43/high.png",
},
},
evolveFrom: {
en: "Joltik",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 48,
name: "Akira Komayama"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Quick Turn",
},
text: {
en: "Flip 2 coins. This attack does 20 damage times the number of heads.",
},
damage: 20
},{
cost: [
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Electrisilk",
},
text: {
en: "If the Defending Pokémon has no Retreat Cost, this attack does 40 more damage.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

82
cards/bw/bw5/44.ts Normal file
View File

@ -0,0 +1,82 @@
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: "bw5-44",
localId: 44,
// Card informations
name: {
en: "Tynamo",
},
hp: 40,
type: [
Type.LIGHTNING,
],
dexId: 602,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/44/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/44/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Charge Beam",
},
text: {
en: "Flip a coin. If heads, attach an Energy card from your discard pile to this Pokémon.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

82
cards/bw/bw5/45.ts Normal file
View File

@ -0,0 +1,82 @@
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: "bw5-45",
localId: 45,
// Card informations
name: {
en: "Tynamo",
},
hp: 40,
type: [
Type.LIGHTNING,
],
dexId: 602,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/45/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/45/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 48,
name: "Akira Komayama"
},
attacks: [{
cost: [
Type.LIGHTNING
],
name: {
en: "Spark",
},
text: {
en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 10
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/46.ts Normal file
View 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: "bw5-46",
localId: 46,
// Card informations
name: {
en: "Eelektrik",
},
hp: 90,
type: [
Type.LIGHTNING,
],
dexId: 603,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/46/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/46/high.png",
},
},
evolveFrom: {
en: "Tynamo",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Headbutt",
},
damage: 20
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.COLORLESS
],
name: {
en: "Shock Bolt",
},
text: {
en: "Discard all Lightning Energy attached to this Pokémon.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

99
cards/bw/bw5/47.ts Normal file
View 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: "bw5-47",
localId: 47,
// Card informations
name: {
en: "Eelektross",
},
hp: 140,
type: [
Type.LIGHTNING,
],
dexId: 604,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/47/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/47/high.png",
},
},
evolveFrom: {
en: "Eelektrik",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 27,
name: "kawayoo"
},
attacks: [{
cost: [
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Suction Heal",
},
text: {
en: "Heal from this Pokémon the same amount of damage you did to the Defending Pokémon.",
},
damage: 40
},{
cost: [
Type.LIGHTNING,
Type.LIGHTNING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Slurp Shakedown",
},
text: {
en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon. This attack does 60 damage to the new Defending Pokémon.",
},
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/48.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-48",
localId: 48,
// Card informations
name: {
en: "Espeon",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 196,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/48/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/48/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 3,
name: "Mizue"
},
abilities: [{
id: 789,
type: AbilityType.TALENT,
name: {
en: "Solar Revelation",
},
text: {
en: "Prevent all effects of your opponent's attacks, except damage, done to each of your Pokémon that has any Energy attached to it.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Psy Report",
},
text: {
en: "Your opponent reveals his or her hand.",
},
damage: 60
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

97
cards/bw/bw5/49.ts Normal file
View File

@ -0,0 +1,97 @@
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: "bw5-49",
localId: 49,
// Card informations
name: {
en: "Slowking",
},
hp: 90,
type: [
Type.PSYCHIC,
],
dexId: 199,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/49/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/49/high.png",
},
},
evolveFrom: {
en: "Slowpoke",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 19,
name: "Shin Nagasawa"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Psy Bolt",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hand Press",
},
text: {
en: "If you have more cards in your hand than your opponent, this attack does 30 more damage.",
},
damage: 50
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/5.ts Normal file
View 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: "bw5-5",
localId: 5,
// Card informations
name: {
en: "Carnivine",
},
hp: 90,
type: [
Type.GRASS,
],
dexId: 455,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/5/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/5/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 22,
name: "Yukiko Baba"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Lure Poison",
},
text: {
en: "Switch the Defending Pokémon with 1 of your opponent's Benched Pokémon. The new Defending Pokémon is now Poisoned.",
},
},{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Spit Squall",
},
text: {
en: "Your opponent puts the Defending Pokémon and all cards attached to it into his or her hand.",
},
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

93
cards/bw/bw5/50.ts Normal file
View 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: "bw5-50",
localId: 50,
// Card informations
name: {
en: "Woobat",
},
hp: 50,
type: [
Type.PSYCHIC,
],
dexId: 527,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/50/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/50/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.PSYCHIC
],
name: {
en: "Supersonic",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
},{
cost: [
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Heart Stamp",
},
damage: 20
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

82
cards/bw/bw5/51.ts Normal file
View File

@ -0,0 +1,82 @@
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: "bw5-51",
localId: 51,
// Card informations
name: {
en: "Yamask",
},
hp: 60,
type: [
Type.PSYCHIC,
],
dexId: 562,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/51/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/51/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 43,
name: "Aya Kusube"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Astonish",
},
text: {
en: "Flip a coin. If heads, choose a card at random from your opponent's hand. Your opponent reveals that card and shuffles it into his or her deck.",
},
damage: 10
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

97
cards/bw/bw5/52.ts Normal file
View File

@ -0,0 +1,97 @@
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: "bw5-52",
localId: 52,
// Card informations
name: {
en: "Cofagrigus",
},
hp: 100,
type: [
Type.PSYCHIC,
],
dexId: 563,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/52/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/52/high.png",
},
},
evolveFrom: {
en: "Yamask",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 27,
name: "kawayoo"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Chuck",
},
text: {
en: "Discard as many Pokémon Tool cards as you like from your hand. This attack does 40 damage times the number of cards you discarded.",
},
damage: 40
},{
cost: [
Type.PSYCHIC,
Type.PSYCHIC
],
name: {
en: "Lock Up",
},
text: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
},
damage: 40
}],
weaknesses: [{
type: Type.DARKNESS,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

90
cards/bw/bw5/53.ts Normal file
View 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: "bw5-53",
localId: 53,
// Card informations
name: {
en: "Aerodactyl",
},
hp: 90,
type: [
Type.FIGHTING,
],
dexId: 142,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/53/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/53/high.png",
},
},
evolveFrom: {},
tags: [
Tag.RESTORED,
],
illustrator: {
id: 23,
name: "Naoyo Kimura"
},
abilities: [{
id: 621,
type: AbilityType.TALENT,
name: {
en: "Ancient Scream",
},
text: {
en: "Your Pokémon's attacks do 10 more damage to the Active Pokémon (before applying Weakness and Resistance).",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Wing Attack",
},
damage: 40
}],
weaknesses: [{
type: Type.GRASS,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

99
cards/bw/bw5/54.ts Normal file
View 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: "bw5-54",
localId: 54,
// Card informations
name: {
en: "Groudon-EX",
},
hp: 180,
type: [
Type.FIGHTING,
],
dexId: 383,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/54/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/54/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 17,
name: "Shizurow"
},
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Tromp",
},
text: {
en: "Does 10 damage to each of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 20
},{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS
],
name: {
en: "Giant Claw",
},
text: {
en: "If the Defending Pokémon already has 2 or more damage counters on it, this attack does 40 more damage.",
},
damage: 80
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

83
cards/bw/bw5/55.ts Normal file
View File

@ -0,0 +1,83 @@
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: "bw5-55",
localId: 55,
// Card informations
name: {
en: "Drilbur",
},
hp: 70,
type: [
Type.FIGHTING,
],
dexId: 529,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/55/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/55/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 18,
name: "Tomokazu Komiya"
},
attacks: [{
cost: [
Type.FIGHTING,
Type.FIGHTING
],
name: {
en: "Scratch",
},
damage: 30
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

98
cards/bw/bw5/56.ts Normal file
View File

@ -0,0 +1,98 @@
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: "bw5-56",
localId: 56,
// Card informations
name: {
en: "Excadrill",
},
hp: 120,
type: [
Type.FIGHTING,
],
dexId: 530,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/56/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/56/high.png",
},
},
evolveFrom: {
en: "Drilbur",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.FIGHTING
],
name: {
en: "Tunnel Strike",
},
text: {
en: "This attack does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
},{
cost: [
Type.FIGHTING,
Type.FIGHTING
],
name: {
en: "Dig Uppercut",
},
text: {
en: "Put a card from your discard pile into your hand.",
},
damage: 50
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

103
cards/bw/bw5/57.ts Normal file
View 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: "bw5-57",
localId: 57,
// Card informations
name: {
en: "Excadrill",
},
hp: 120,
type: [
Type.FIGHTING,
],
dexId: 530,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/57/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/57/high.png",
},
},
evolveFrom: {
en: "Drilbur",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Reinforced Drill",
},
text: {
en: "If this Pokémon has a Pokémon Tool card attached to it, this attack does 30 more damage.",
},
damage: 50
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Mach Claw",
},
text: {
en: "This attack's damage isn't affected by Resistance.",
},
damage: 70
}],
weaknesses: [{
type: Type.WATER,
value: "×2"
}],
resistances: [{
type: Type.LIGHTNING,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

89
cards/bw/bw5/58.ts Normal file
View 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: "bw5-58",
localId: 58,
// Card informations
name: {
en: "Timburr",
},
hp: 60,
type: [
Type.FIGHTING,
],
dexId: 532,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/58/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/58/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 3,
name: "Mizue"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Low Kick",
},
damage: 10
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Hammer In",
},
damage: 30
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/59.ts Normal file
View 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: "bw5-59",
localId: 59,
// Card informations
name: {
en: "Gurdurr",
},
hp: 80,
type: [
Type.FIGHTING,
],
dexId: 533,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/59/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/59/high.png",
},
},
evolveFrom: {
en: "Timburr",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 3,
name: "Mizue"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Low Kick",
},
damage: 20
},{
cost: [
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Steel Swing",
},
text: {
en: "Flip 2 coins. This attack does 60 damage times the number of heads.",
},
damage: 60
}],
weaknesses: [{
type: Type.PSYCHIC,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

99
cards/bw/bw5/6.ts Normal file
View 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: "bw5-6",
localId: 6,
// Card informations
name: {
en: "Leafeon",
},
hp: 90,
type: [
Type.GRASS,
],
dexId: 470,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/6/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/6/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Quick Attack",
},
text: {
en: "Flip a coin. If heads, this attack does 30 more damage.",
},
damage: 10
},{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Energy Assist",
},
text: {
en: "Attach a basic Energy card from your discard pile to 1 of your Benched Pokémon.",
},
damage: 40
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.WATER,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

101
cards/bw/bw5/60.ts Normal file
View 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: "bw5-60",
localId: 60,
// Card informations
name: {
en: "Umbreon",
},
hp: 100,
type: [
Type.DARKNESS,
],
dexId: 197,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/60/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/60/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 20,
name: "TOKIYA"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Shadow Drain",
},
text: {
en: "Heal from this Pokémon the same amount of damage you did to the Defending Pokémon.",
},
damage: 30
},{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Slashing Strike",
},
text: {
en: "This Pokémon can't use Slashing Strike during your next turn.",
},
damage: 80
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

100
cards/bw/bw5/61.ts Normal file
View 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: "bw5-61",
localId: 61,
// Card informations
name: {
en: "Umbreon",
},
hp: 100,
type: [
Type.DARKNESS,
],
dexId: 197,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/61/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/61/high.png",
},
},
evolveFrom: {
en: "Eevee",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Confuse Ray",
},
text: {
en: "The Defending Pokémon is now Confused.",
},
damage: 20
},{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Shadow Shutdown",
},
text: {
en: "Flip 2 coins. If both of them are heads, discard all Energy attached to the Defending Pokémon.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

89
cards/bw/bw5/62.ts Normal file
View 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: "bw5-62",
localId: 62,
// Card informations
name: {
en: "Sableye",
},
hp: 70,
type: [
Type.DARKNESS,
],
dexId: 302,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/62/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/62/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 27,
name: "kawayoo"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Confuse Ray",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 10
},{
cost: [
Type.DARKNESS
],
name: {
en: "Junk Hunt",
},
text: {
en: "Put 2 Item cards from your discard pile into your hand.",
},
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/63.ts Normal file
View 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: "bw5-63",
localId: 63,
// Card informations
name: {
en: "Darkrai-EX",
},
hp: 180,
type: [
Type.DARKNESS,
],
dexId: 491,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/63/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/63/high.png",
},
},
evolveFrom: {},
tags: [
Tag.EX,
],
illustrator: {
id: 17,
name: "Shizurow"
},
abilities: [{
id: 261,
type: AbilityType.TALENT,
name: {
en: "Dark Cloak",
},
text: {
en: "Each of your Pokémon that has any Darkness Energy attached to it has no Retreat Cost.",
}
}],
attacks: [{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Night Spear",
},
text: {
en: "Does 30 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 90
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/64.ts Normal file
View 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: "bw5-64",
localId: 64,
// Card informations
name: {
en: "Sandile",
},
hp: 70,
type: [
Type.DARKNESS,
],
dexId: 551,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/64/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/64/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 30,
name: "Hajime Kusajima"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Sand Dive",
},
text: {
en: "Flip a coin. If heads, prevent all damage done to this Pokémon by attacks during your opponent's next turn.",
},
},{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Corkscrew Punch",
},
damage: 40
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/65.ts Normal file
View 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: "bw5-65",
localId: 65,
// Card informations
name: {
en: "Krokorok",
},
hp: 90,
type: [
Type.DARKNESS,
],
dexId: 552,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/65/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/65/high.png",
},
},
evolveFrom: {
en: "Sandile",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 9,
name: "Mitsuhiro Arita"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Mud-Slap",
},
damage: 30
},{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Corkscrew Punch",
},
damage: 70
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

103
cards/bw/bw5/66.ts Normal file
View 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: "bw5-66",
localId: 66,
// Card informations
name: {
en: "Krookodile",
},
hp: 150,
type: [
Type.DARKNESS,
],
dexId: 553,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/66/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/66/high.png",
},
},
evolveFrom: {
en: "Krokorok",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Dark Clamp",
},
text: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
},
damage: 60
},{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Bombast",
},
text: {
en: "Does 40 damage times the number of Prize cards you have taken.",
},
damage: 40
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

86
cards/bw/bw5/67.ts Normal file
View 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: "bw5-67",
localId: 67,
// Card informations
name: {
en: "Scraggy",
},
hp: 60,
type: [
Type.DARKNESS,
],
dexId: 559,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/67/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/67/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Rising Lunge",
},
text: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
},
damage: 10
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

98
cards/bw/bw5/68.ts Normal file
View File

@ -0,0 +1,98 @@
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: "bw5-68",
localId: 68,
// Card informations
name: {
en: "Scrafty",
},
hp: 100,
type: [
Type.DARKNESS,
],
dexId: 560,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/68/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/68/high.png",
},
},
evolveFrom: {
en: "Scraggy",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Headbutt",
},
damage: 30
},{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Crushing Blow",
},
text: {
en: "Flip a coin. If heads, discard an Energy attached to the Defending Pokémon.",
},
damage: 70
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

93
cards/bw/bw5/69.ts Normal file
View 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: "bw5-69",
localId: 69,
// Card informations
name: {
en: "Zorua",
},
hp: 50,
type: [
Type.DARKNESS,
],
dexId: 570,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/69/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/69/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.DARKNESS
],
name: {
en: "Ascension",
},
text: {
en: "Search your deck for a card that evolves from this Pokémon and put it onto this Pokémon. (This counts as evolving this Pokémon.) Shuffle your deck afterward.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Scratch",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

89
cards/bw/bw5/7.ts Normal file
View 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: "bw5-7",
localId: 7,
// Card informations
name: {
en: "Dwebble",
},
hp: 60,
type: [
Type.GRASS,
],
dexId: 557,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/7/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/7/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 48,
name: "Akira Komayama"
},
attacks: [{
cost: [
Type.GRASS
],
name: {
en: "Beat",
},
damage: 10
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Cut",
},
damage: 30
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

96
cards/bw/bw5/70.ts Normal file
View 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: "bw5-70",
localId: 70,
// Card informations
name: {
en: "Zorua",
},
hp: 60,
type: [
Type.DARKNESS,
],
dexId: 570,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/70/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/70/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 48,
name: "Akira Komayama"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Paralyzing Gaze",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
},{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Shadow Bind",
},
text: {
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

100
cards/bw/bw5/71.ts Normal file
View 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: "bw5-71",
localId: 71,
// Card informations
name: {
en: "Zoroark",
},
hp: 100,
type: [
Type.DARKNESS,
],
dexId: 571,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/71/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/71/high.png",
},
},
evolveFrom: {
en: "Zorua",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 4,
name: "5ban Graphics"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Brutal Bash",
},
text: {
en: "Does 20 damage times the number of Darkness Pokémon you have in play.",
},
damage: 20
},{
cost: [
Type.DARKNESS,
Type.DARKNESS
],
name: {
en: "Dark Rush",
},
text: {
en: "Does 20 damage times the number of damage counters on this Pokémon.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

98
cards/bw/bw5/72.ts Normal file
View File

@ -0,0 +1,98 @@
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: "bw5-72",
localId: 72,
// Card informations
name: {
en: "Bisharp",
},
hp: 90,
type: [
Type.DARKNESS,
],
dexId: 625,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/72/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/72/high.png",
},
},
evolveFrom: {
en: "Pawniard",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Slash",
},
damage: 30
},{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Fury Cutter",
},
text: {
en: "Flip 3 coins. If 1 of them is heads, this attack does 10 more damage. If 2 of them are heads, this attack does 30 more damage. If all of them are heads, this attack does 60 more damage.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

85
cards/bw/bw5/73.ts Normal file
View 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: "bw5-73",
localId: 73,
// Card informations
name: {
en: "Vullaby",
},
hp: 60,
type: [
Type.DARKNESS,
],
dexId: 629,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/73/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/73/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 28,
name: "match"
},
attacks: [{
cost: [
Type.DARKNESS
],
name: {
en: "Whirlwind",
},
text: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
},
damage: 10
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

100
cards/bw/bw5/74.ts Normal file
View 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: "bw5-74",
localId: 74,
// Card informations
name: {
en: "Escavalier",
},
hp: 90,
type: [
Type.METAL,
],
dexId: 589,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/74/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/74/high.png",
},
},
evolveFrom: {
en: "Karrablast",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 8,
name: "Masakazu Fukuda"
},
attacks: [{
cost: [
Type.METAL
],
name: {
en: "Joust",
},
text: {
en: "Before doing damage, discard a Pokémon Tool card attached to the Defending Pokémon.",
},
damage: 30
},{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Cavalry Lance",
},
text: {
en: "During your opponent's next turn, this Pokémon has no Weakness.",
},
damage: 70
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

86
cards/bw/bw5/75.ts Normal file
View 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: "bw5-75",
localId: 75,
// Card informations
name: {
en: "Klink",
},
hp: 60,
type: [
Type.METAL,
],
dexId: 599,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/75/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/75/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 2,
name: "Midori Harada"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Smash Turn",
},
text: {
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

98
cards/bw/bw5/76.ts Normal file
View File

@ -0,0 +1,98 @@
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: "bw5-76",
localId: 76,
// Card informations
name: {
en: "Klang",
},
hp: 80,
type: [
Type.METAL,
],
dexId: 600,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/76/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/76/high.png",
},
},
evolveFrom: {
en: "Klink",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 19,
name: "Shin Nagasawa"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Charge Beam",
},
text: {
en: "Flip a coin. If heads, attach an Energy card from your discard pile to this Pokémon.",
},
damage: 20
},{
cost: [
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Vice Grip",
},
damage: 50
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

101
cards/bw/bw5/77.ts Normal file
View 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: "bw5-77",
localId: 77,
// Card informations
name: {
en: "Klinklang",
},
hp: 140,
type: [
Type.METAL,
],
dexId: 601,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/77/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/77/high.png",
},
},
evolveFrom: {
en: "Klang",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 30,
name: "Hajime Kusajima"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Metal Blast",
},
text: {
en: "Does 20 more damage for each Metal Energy attached to this Pokémon.",
},
damage: 20
},{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Lock Gear",
},
text: {
en: "Draw cards until you have 6 cards in your hand.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

93
cards/bw/bw5/78.ts Normal file
View 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: "bw5-78",
localId: 78,
// Card informations
name: {
en: "Pawniard",
},
hp: 60,
type: [
Type.METAL,
],
dexId: 624,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/78/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/78/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Scratch",
},
damage: 20
},{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Metal Claw",
},
damage: 40
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

98
cards/bw/bw5/79.ts Normal file
View File

@ -0,0 +1,98 @@
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: "bw5-79",
localId: 79,
// Card informations
name: {
en: "Bisharp",
},
hp: 100,
type: [
Type.METAL,
],
dexId: 625,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/79/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/79/high.png",
},
},
evolveFrom: {
en: "Pawniard",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 15,
name: "Naoki Saito"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Aerial Ace",
},
text: {
en: "Flip a coin. If heads, this attack does 20 more damage.",
},
damage: 20
},{
cost: [
Type.METAL,
Type.METAL,
Type.COLORLESS
],
name: {
en: "Metal Claw",
},
damage: 80
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/8.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-8",
localId: 8,
// Card informations
name: {
en: "Crustle",
},
hp: 110,
type: [
Type.GRASS,
],
dexId: 558,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/8/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/8/high.png",
},
},
evolveFrom: {
en: "Dwebble",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 1,
name: "Ryo Ueda"
},
attacks: [{
cost: [
Type.GRASS,
Type.COLORLESS
],
name: {
en: "Cut",
},
damage: 30
},{
cost: [
Type.GRASS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Heavy Bullet",
},
text: {
en: "Flip a coin. If heads, this attack does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 70
}],
weaknesses: [{
type: Type.FIRE,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/80.ts Normal file
View 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: "bw5-80",
localId: 80,
// Card informations
name: {
en: "Chansey",
},
hp: 100,
type: [
Type.COLORLESS,
],
dexId: 113,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/80/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/80/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Sing",
},
text: {
en: "The Defending Pokémon is now Asleep.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Double-Edge",
},
text: {
en: "This Pokémon does 30 damage to itself.",
},
damage: 60
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

83
cards/bw/bw5/81.ts Normal file
View File

@ -0,0 +1,83 @@
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: "bw5-81",
localId: 81,
// Card informations
name: {
en: "Chansey",
},
hp: 100,
type: [
Type.COLORLESS,
],
dexId: 113,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/81/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/81/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 3,
name: "Mizue"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Continuous Tumble",
},
text: {
en: "Flip a coin until you get tails. This attack does 30 damage times the number of heads.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

95
cards/bw/bw5/82.ts Normal file
View File

@ -0,0 +1,95 @@
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: "bw5-82",
localId: 82,
// Card informations
name: {
en: "Blissey",
},
hp: 130,
type: [
Type.COLORLESS,
],
dexId: 242,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/82/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/82/high.png",
},
},
evolveFrom: {
en: "Chansey",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 10,
name: "Kouki Saitou"
},
abilities: [{
id: 706,
type: AbilityType.TALENT,
name: {
en: "Softboiled",
},
text: {
en: "Once during your turn (before your attack), you may flip a coin. If heads, heal 30 damage from your Active Pokémon.",
}
}],
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Double-Edge",
},
text: {
en: "This Pokémon does 60 damage to itself.",
},
damage: 90
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

82
cards/bw/bw5/83.ts Normal file
View File

@ -0,0 +1,82 @@
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: "bw5-83",
localId: 83,
// Card informations
name: {
en: "Eevee",
},
hp: 60,
type: [
Type.COLORLESS,
],
dexId: 133,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/83/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/83/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 46,
name: "MAHOU"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Surprise Attack",
},
text: {
en: "Flip a coin. If tails, this attack does nothing.",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

88
cards/bw/bw5/84.ts Normal file
View 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: "bw5-84",
localId: 84,
// Card informations
name: {
en: "Eevee",
},
hp: 50,
type: [
Type.COLORLESS,
],
dexId: 133,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/84/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/84/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 7,
name: "Sumiyoshi Kizuki"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Smash Kick",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Tail Whap",
},
damage: 20
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/85.ts Normal file
View 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: "bw5-85",
localId: 85,
// Card informations
name: {
en: "Chatot",
},
hp: 70,
type: [
Type.COLORLESS,
],
dexId: 441,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/85/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/85/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 46,
name: "MAHOU"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Tone-Deaf",
},
text: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Peck",
},
damage: 30
}],
weaknesses: [{
type: Type.LIGHTNING,
value: "×2"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

91
cards/bw/bw5/86.ts Normal file
View 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: "bw5-86",
localId: 86,
// Card informations
name: {
en: "Lillipup",
},
hp: 50,
type: [
Type.COLORLESS,
],
dexId: 506,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/86/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/86/high.png",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: {
id: 25,
name: "Kyoko Umemoto"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Tackle",
},
damage: 10
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Take Down",
},
text: {
en: "This Pokémon does 10 damage to itself.",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Common,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

92
cards/bw/bw5/87.ts Normal file
View File

@ -0,0 +1,92 @@
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: "bw5-87",
localId: 87,
// Card informations
name: {
en: "Herdier",
},
hp: 80,
type: [
Type.COLORLESS,
],
dexId: 507,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/87/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/87/high.png",
},
},
evolveFrom: {
en: "Lillipup",
},
tags: [
Tag.STAGE1,
],
illustrator: {
id: 23,
name: "Naoyo Kimura"
},
attacks: [{
cost: [
Type.COLORLESS
],
name: {
en: "Roar",
},
text: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
},
},{
cost: [
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Tackle",
},
damage: 30
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Uncommon,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

100
cards/bw/bw5/88.ts Normal file
View 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: "bw5-88",
localId: 88,
// Card informations
name: {
en: "Stoutland",
},
hp: 130,
type: [
Type.COLORLESS,
],
dexId: 508,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/88/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/88/high.png",
},
},
evolveFrom: {
en: "Herdier",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 32,
name: "Atsuko Nishida"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Special Fang",
},
text: {
en: "If this Pokémon has any Special Energy attached to it, this attack does 40 more damage.",
},
damage: 40
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Ferocious Bellow",
},
text: {
en: "During your opponent's next turn, any damage done by attacks from the Defending Pokémon is reduced by 30 (before applying Weakness and Resistance).",
},
damage: 60
}],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

94
cards/bw/bw5/89.ts Normal file
View 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: "bw5-89",
localId: 89,
// Card informations
name: {
en: "Haxorus",
},
hp: 140,
type: [
Type.COLORLESS,
],
dexId: 612,
image: {
low: {
en: "https://assets.tcgdex.net/en/bw/bw5/89/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/bw/bw5/89/high.png",
},
},
evolveFrom: {
en: "Fraxure",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 48,
name: "Akira Komayama"
},
attacks: [{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Guillotine",
},
damage: 60
},{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Stunning Uppercut",
},
text: {
en: "Flip 2 coins. If both of them are heads, the Defending Pokémon is now Paralyzed. If both of them are tails, this attack does nothing.",
},
damage: 80
}],
rarity: Rarity.RareHolo,
category: Category.POKEMON,
set: {
name: "Dark Explorers",
code: "bw5"
}
}
export default card

Some files were not shown because too many files have changed in this diff Show More