1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00

Added Datas for SWSH35

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
Florian Bouillon 2021-01-31 15:31:53 +01:00
parent d36d42bae8
commit 2029a5ce9b
Signed by: Florian Bouillon
GPG Key ID: 50BD648F12C86AB6
81 changed files with 6552 additions and 0 deletions

98
cards/swsh/swsh35/1.ts Normal file
View File

@ -0,0 +1,98 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-1",
localId: 1,
name: {
en: "Venusaur V",
},
illustrator: "PLANETA Mochizuki",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 220,
type: [
Type.GRASS,
],
attacks: [
{
cost: [
Type.GRASS,
Type.GRASS,
Type.COLORLESS,
],
name: {
en: "Pollen Bomb",
},
text: {
en: "Your opponents Active Pokémon is now Asleep and Poisoned.",
},
damage: 80,
},
{
cost: [
Type.GRASS,
Type.GRASS,
Type.GRASS,
Type.COLORLESS,
],
name: {
en: "Solar Typhoon",
},
text: {
en: "During your next turn, this Pokémon cant use Solar Typhoon.",
},
damage: 220,
},
],
weaknesses: [
{
type: Type.FIRE,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

98
cards/swsh/swsh35/10.ts Normal file
View File

@ -0,0 +1,98 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-10",
localId: 10,
name: {
en: "Centiskorch",
},
illustrator: "Shin Nagasawa",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Sizzlipede",
},
hp: 130,
type: [
Type.FIRE,
],
attacks: [
{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Searing Flame",
},
text: {
en: "Your opponents Active Pokémon is now Burned.",
},
damage: 50,
},
{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Heat Crawler",
},
damage: 140,
},
],
weaknesses: [
{
type: Type.WATER,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

86
cards/swsh/swsh35/11.ts Normal file
View File

@ -0,0 +1,86 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-11",
localId: 11,
name: {
en: "Carvanha",
},
tags: [
],
illustrator: "Shigenori Negishi",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/11/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/11/high",
},
},
// Card Pokémon Informations
hp: 60,
type: [
Type.WATER,
],
attacks: [
{
cost: [
Type.WATER,
],
name: {
en: "Bite",
},
damage: 10,
},
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

80
cards/swsh/swsh35/12.ts Normal file
View File

@ -0,0 +1,80 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-12",
localId: 12,
name: {
en: "Sharpedo",
},
illustrator: "Ryuta Fuse",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Carvanha",
},
hp: 110,
type: [
Type.WATER,
],
attacks: [
{
cost: [
Type.WATER,
],
name: {
en: "Aqua Jet",
},
text: {
en: "This attack also does 20 damage to 1 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 50,
},
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

95
cards/swsh/swsh35/13.ts Normal file
View File

@ -0,0 +1,95 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-13",
localId: 13,
name: {
en: "Wailord V",
},
illustrator: "PLANETA Mochizuki",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 280,
type: [
Type.WATER,
],
attacks: [
{
cost: [
Type.WATER,
],
name: {
en: "Draw Up",
},
text: {
en: "Attach up to 3 Water Energy cards from your discard pile to this Pokémon.",
},
},
{
cost: [
Type.WATER,
Type.WATER,
Type.WATER,
Type.WATER,
],
name: {
en: "Ocean Waves",
},
text: {
en: "Flip 3 coins. This attack does 120 damage for each heads.",
},
damage: "120×",
},
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
retreat: 4,
// Card Trainer/Energy informations
}
export default card

94
cards/swsh/swsh35/14.ts Normal file
View File

@ -0,0 +1,94 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-14",
localId: 14,
name: {
en: "Drednaw V",
},
illustrator: "aky CG Works",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 210,
type: [
Type.WATER,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Solid Shell",
},
text: {
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
},
}
,
],
attacks: [
{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
],
name: {
en: "Powerful Bite",
},
text: {
en: "During your opponents next turn, the Defending Pokémon cant retreat.",
},
damage: 130,
},
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
retreat: 4,
// Card Trainer/Energy informations
}
export default card

97
cards/swsh/swsh35/15.ts Normal file
View File

@ -0,0 +1,97 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-15",
localId: 15,
name: {
en: "Drednaw VMAX",
},
illustrator: "aky CG Works",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Drednaw V",
},
hp: 320,
type: [
Type.WATER,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Solid Shell",
},
text: {
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
},
}
,
],
attacks: [
{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
],
name: {
en: "G-Max Headbutt",
},
text: {
en: "Flip a coin. If heads, this attack does 80 more damage.",
},
damage: "160+",
},
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
retreat: 4,
// Card Trainer/Energy informations
}
export default card

74
cards/swsh/swsh35/16.ts Normal file
View File

@ -0,0 +1,74 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-16",
localId: 16,
name: {
en: "Gardevoir V",
},
tags: [
],
illustrator: "Kagemaru Himeno",
rarity: Rarity.ULTRARARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/16/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/16/high",
},
},
// Card Pokémon Informations
hp: 210,
type: [
Type.PSYCHIC,
],
weaknesses: [
{
type: Type.METAL,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
effect: {
en: "When your Pokémon V is Knocked Out, your opponent takes 2 Prize cards.",
},
}
export default card

82
cards/swsh/swsh35/17.ts Normal file
View File

@ -0,0 +1,82 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-17",
localId: 17,
name: {
en: "Gardevoir VMAX",
},
illustrator: "5ban Graphics",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Gardevoir V",
},
hp: 320,
type: [
Type.PSYCHIC,
],
attacks: [
{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS,
],
name: {
en: "Max Cure",
},
text: {
en: "Heal 50 damage from this Pokémon.",
},
damage: 180,
},
],
weaknesses: [
{
type: Type.METAL,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

108
cards/swsh/swsh35/18.ts Normal file
View File

@ -0,0 +1,108 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-18",
localId: 18,
name: {
en: "Hatenna",
},
tags: [
],
illustrator: "Akira Komayama",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/18/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/18/high",
},
},
// Card Pokémon Informations
hp: 60,
type: [
Type.PSYCHIC,
],
attacks: [
{
cost: [
Type.PSYCHIC,
],
name: {
en: "Stampede",
},
damage: 10,
},
{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
],
name: {
en: "Magical Shot",
},
damage: 30,
},
],
weaknesses: [
{
type: Type.DARKNESS,
value: "×2",
},
],
resistances: [
{
type: Type.FIGHTING,
value: "-30",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

99
cards/swsh/swsh35/19.ts Normal file
View File

@ -0,0 +1,99 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-19",
localId: 19,
name: {
en: "Hattrem",
},
illustrator: "Hitoshi Ariga",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Hatenna",
},
hp: 90,
type: [
Type.PSYCHIC,
],
attacks: [
{
cost: [
Type.PSYCHIC,
],
name: {
en: "Beat",
},
damage: 20,
},
{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
],
name: {
en: "Super Psy Bolt",
},
damage: 40,
},
],
weaknesses: [
{
type: Type.DARKNESS,
value: "×2",
},
],
resistances: [
{
type: Type.FIGHTING,
value: "-30",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

76
cards/swsh/swsh35/2.ts Normal file
View File

@ -0,0 +1,76 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-2",
localId: 2,
name: {
en: "Weedle",
},
illustrator: "Yuka Morii",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 60,
type: [
Type.GRASS,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Call for Family",
},
text: {
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.",
},
},
],
weaknesses: [
{
type: Type.FIRE,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

104
cards/swsh/swsh35/20.ts Normal file
View File

@ -0,0 +1,104 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-20",
localId: 20,
name: {
en: "Hatterene",
},
illustrator: "Naoki Saito",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Hattrem",
},
hp: 150,
type: [
Type.PSYCHIC,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Hazard Sensor",
},
text: {
en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponents Pokémon (even if this Pokémon is Knocked Out), the Attacking Pokémon is now Confused.",
},
}
,
],
attacks: [
{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
],
name: {
en: "Life Sucker",
},
text: {
en: "Heal 30 damage from this Pokémon.",
},
damage: 100,
},
],
weaknesses: [
{
type: Type.DARKNESS,
value: "×2",
},
],
resistances: [
{
type: Type.FIGHTING,
value: "-30",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

101
cards/swsh/swsh35/21.ts Normal file
View File

@ -0,0 +1,101 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-21",
localId: 21,
name: {
en: "Galarian Cursola V",
},
illustrator: "5ban Graphics",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 190,
type: [
Type.PSYCHIC,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Gnawing Aura",
},
text: {
en: "As long as this Pokémon is in the Active Spot, whenever your opponent attaches an Energy card from their hand to 1 of their Pokémon, put 3 damage counters on that Pokémon.",
},
}
,
],
attacks: [
{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
],
name: {
en: "Hollow Missile",
},
text: {
en: "Put 3 damage counters on your opponents Benched Pokémon in any way you like.",
},
damage: 60,
},
],
weaknesses: [
{
type: Type.DARKNESS,
value: "×2",
},
],
resistances: [
{
type: Type.FIGHTING,
value: "-30",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

94
cards/swsh/swsh35/22.ts Normal file
View File

@ -0,0 +1,94 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-22",
localId: 22,
name: {
en: "Alcremie V",
},
illustrator: "Ayaka Yoshida",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 170,
type: [
Type.PSYCHIC,
],
attacks: [
{
cost: [
Type.PSYCHIC,
],
name: {
en: "Sugary Sprinkles",
},
text: {
en: "Heal 30 damage from each of your Benched Pokémon.",
},
},
{
cost: [
Type.PSYCHIC,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Sweet Splash",
},
text: {
en: "If the Defending Pokémon is a Basic Pokémon, it cant attack during your opponents next turn.",
},
damage: 100,
},
],
weaknesses: [
{
type: Type.METAL,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

77
cards/swsh/swsh35/23.ts Normal file
View File

@ -0,0 +1,77 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-23",
localId: 23,
name: {
en: "Alcremie VMAX",
},
tags: [
],
illustrator: "5ban Graphics",
rarity: Rarity.ULTRARARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/23/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/23/high",
},
},
// Card Pokémon Informations
evolveFrom: {
en: "Alcremie V",
},
hp: 310,
type: [
Type.PSYCHIC,
],
weaknesses: [
{
type: Type.METAL,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
effect: {
en: "When your Pokémon VMAX is Knocked Out, your opponent takes 3 Prize cards.",
},
}
export default card

103
cards/swsh/swsh35/24.ts Normal file
View File

@ -0,0 +1,103 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-24",
localId: 24,
name: {
en: "Machop",
},
tags: [
],
illustrator: "Shibuzoh.",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/24/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/24/high",
},
},
// Card Pokémon Informations
hp: 70,
type: [
Type.FIGHTING,
],
attacks: [
{
cost: [
Type.FIGHTING,
],
name: {
en: "Low Kick",
},
damage: 10,
},
{
cost: [
Type.FIGHTING,
Type.COLORLESS,
],
name: {
en: "Steady Punch",
},
text: {
en: "Flip a coin. If heads, this attack does 40 more damage.",
},
damage: "20+",
},
],
weaknesses: [
{
type: Type.PSYCHIC,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

107
cards/swsh/swsh35/25.ts Normal file
View File

@ -0,0 +1,107 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-25",
localId: 25,
name: {
en: "Machoke",
},
tags: [
],
illustrator: "AKIRA EGAWA",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/25/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/25/high",
},
},
// Card Pokémon Informations
evolveFrom: {
en: "Machop",
},
hp: 110,
type: [
Type.FIGHTING,
],
attacks: [
{
cost: [
Type.FIGHTING,
],
name: {
en: "Low Kick",
},
damage: 30,
},
{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
],
name: {
en: "Pummel",
},
text: {
en: "Flip a coin. If heads, this attack does 70 more damage.",
},
damage: "50+",
},
],
weaknesses: [
{
type: Type.PSYCHIC,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

99
cards/swsh/swsh35/26.ts Normal file
View File

@ -0,0 +1,99 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-26",
localId: 26,
name: {
en: "Machamp",
},
illustrator: "Anesaki Dynamic",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Machoke",
},
hp: 170,
type: [
Type.FIGHTING,
],
attacks: [
{
cost: [
Type.FIGHTING,
Type.COLORLESS,
],
name: {
en: "Macho Revenge",
},
text: {
en: "This attack does 20 damage for each Fighting Pokémon in your discard pile.",
},
damage: "20×",
},
{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
],
name: {
en: "Dynamite Punch",
},
text: {
en: "This Pokémon also does 50 damage to itself.",
},
damage: 200,
},
],
weaknesses: [
{
type: Type.PSYCHIC,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

95
cards/swsh/swsh35/27.ts Normal file
View File

@ -0,0 +1,95 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-27",
localId: 27,
name: {
en: "Lucario V",
},
illustrator: "AKIRA EGAWA",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 210,
type: [
Type.FIGHTING,
],
attacks: [
{
cost: [
Type.FIGHTING,
],
name: {
en: "Aura Sphere",
},
text: {
en: "This attack also does 20 damage to 1 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 40,
},
{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
],
name: {
en: "Beatdown Smash",
},
text: {
en: "During your next turn, this Pokémon cant use Beatdown Smash.",
},
damage: 180,
},
],
weaknesses: [
{
type: Type.PSYCHIC,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

93
cards/swsh/swsh35/28.ts Normal file
View File

@ -0,0 +1,93 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-28",
localId: 28,
name: {
en: "Zygarde",
},
illustrator: "Shin Nagasawa",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 140,
type: [
Type.FIGHTING,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Bite",
},
damage: 30,
},
{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Power Blast",
},
text: {
en: "Discard a Fighting Energy from this Pokémon.",
},
damage: 130,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

90
cards/swsh/swsh35/29.ts Normal file
View File

@ -0,0 +1,90 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-29",
localId: 29,
name: {
en: "Rockruff",
},
illustrator: "Naoyo Kimura",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 70,
type: [
Type.FIGHTING,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Collect",
},
text: {
en: "Draw a card.",
},
},
{
cost: [
Type.FIGHTING,
Type.COLORLESS,
],
name: {
en: "Bite",
},
damage: 20,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

77
cards/swsh/swsh35/3.ts Normal file
View File

@ -0,0 +1,77 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-3",
localId: 3,
name: {
en: "Kakuna",
},
illustrator: "Miki Tanaka",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Weedle",
},
hp: 80,
type: [
Type.GRASS,
],
attacks: [
{
cost: [
Type.GRASS,
],
name: {
en: "Bug Bite",
},
damage: 30,
},
],
weaknesses: [
{
type: Type.FIRE,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

95
cards/swsh/swsh35/30.ts Normal file
View File

@ -0,0 +1,95 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-30",
localId: 30,
name: {
en: "Lycanroc",
},
illustrator: "Ryuta Fuse",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Rockruff",
},
hp: 120,
type: [
Type.FIGHTING,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Rock Throw",
},
damage: 30,
},
{
cost: [
Type.FIGHTING,
Type.FIGHTING,
Type.COLORLESS,
],
name: {
en: "Slashing Strike",
},
text: {
en: "During your next turn, this Pokémon cant use Slashing Strike.",
},
damage: 150,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

86
cards/swsh/swsh35/31.ts Normal file
View File

@ -0,0 +1,86 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-31",
localId: 31,
name: {
en: "Rolycoly",
},
tags: [
],
illustrator: "Masakazu Fukuda",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/31/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/31/high",
},
},
// Card Pokémon Informations
hp: 70,
type: [
Type.FIGHTING,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Ram",
},
damage: 10,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

74
cards/swsh/swsh35/32.ts Normal file
View File

@ -0,0 +1,74 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-32",
localId: 32,
name: {
en: "Grapploct V",
},
tags: [
],
illustrator: "PLANETA Igarashi",
rarity: Rarity.ULTRARARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/32/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/32/high",
},
},
// Card Pokémon Informations
hp: 210,
type: [
Type.FIGHTING,
],
weaknesses: [
{
type: Type.PSYCHIC,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
effect: {
en: "When your Pokémon V is Knocked Out, your opponent takes 2 Prize cards.",
},
}
export default card

100
cards/swsh/swsh35/33.ts Normal file
View File

@ -0,0 +1,100 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-33",
localId: 33,
name: {
en: "Ekans",
},
tags: [
],
illustrator: "Uta",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/33/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/33/high",
},
},
// Card Pokémon Informations
hp: 70,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Ram",
},
damage: 10,
},
{
cost: [
Type.DARKNESS,
Type.COLORLESS,
],
name: {
en: "Tail Snap",
},
damage: 30,
},
],
weaknesses: [
{
type: Type.FIGHTING,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

103
cards/swsh/swsh35/34.ts Normal file
View File

@ -0,0 +1,103 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-34",
localId: 34,
name: {
en: "Arbok",
},
tags: [
],
illustrator: "nagimiso",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/34/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/34/high",
},
},
// Card Pokémon Informations
evolveFrom: {
en: "Ekans",
},
hp: 120,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Sharp Fang",
},
damage: 30,
},
{
cost: [
Type.DARKNESS,
Type.COLORLESS,
],
name: {
en: "Tail Snap",
},
damage: 70,
},
],
weaknesses: [
{
type: Type.FIGHTING,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

77
cards/swsh/swsh35/35.ts Normal file
View File

@ -0,0 +1,77 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-35",
localId: 35,
name: {
en: "Galarian Zigzagoon",
},
illustrator: "Kouki Saitou",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 70,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Pin Missile",
},
text: {
en: "Flip 4 coins. This attack does 10 damage for each heads.",
},
damage: "10×",
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

93
cards/swsh/swsh35/36.ts Normal file
View File

@ -0,0 +1,93 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-36",
localId: 36,
name: {
en: "Galarian Linoone",
},
tags: [
],
illustrator: "Akira Komayama",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/36/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/36/high",
},
},
// Card Pokémon Informations
evolveFrom: {
en: "Galarian Zigzagoon",
},
hp: 100,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Double-Edge",
},
text: {
en: "This Pokémon also does 20 damage to itself.",
},
damage: 60,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

97
cards/swsh/swsh35/37.ts Normal file
View File

@ -0,0 +1,97 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-37",
localId: 37,
name: {
en: "Galarian Obstagoon",
},
illustrator: "Shin Nagasawa",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Galarian Linoone",
},
hp: 170,
type: [
Type.DARKNESS,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Wicked Ruler",
},
text: {
en: "Once during your turn, you may have your opponent discard cards from their hand until they have 4 cards in their hand.",
},
}
,
],
attacks: [
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Knuckle Impact",
},
text: {
en: "During your next turn, this Pokémon cant attack.",
},
damage: 180,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

87
cards/swsh/swsh35/38.ts Normal file
View File

@ -0,0 +1,87 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-38",
localId: 38,
name: {
en: "Absol",
},
tags: [
],
illustrator: "kodama",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/38/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/38/high",
},
},
// Card Pokémon Informations
hp: 100,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.DARKNESS,
Type.DARKNESS,
],
name: {
en: "Dark Cutter",
},
damage: 70,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

103
cards/swsh/swsh35/39.ts Normal file
View File

@ -0,0 +1,103 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-39",
localId: 39,
name: {
en: "Purrloin",
},
tags: [
],
illustrator: "sowsow",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/39/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/39/high",
},
},
// Card Pokémon Informations
hp: 70,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.DARKNESS,
],
name: {
en: "Dig Claws",
},
damage: 10,
},
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Fake Out",
},
text: {
en: "Flip a coin. If heads, your opponents Active Pokémon is now Paralyzed.",
},
damage: 20,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

80
cards/swsh/swsh35/4.ts Normal file
View File

@ -0,0 +1,80 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-4",
localId: 4,
name: {
en: "Beedrill",
},
illustrator: "Hideki Ishikawa",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Kakuna",
},
hp: 140,
type: [
Type.GRASS,
],
attacks: [
{
cost: [
Type.GRASS,
],
name: {
en: "Poison Jab",
},
text: {
en: "Your opponents Active Pokémon is now Poisoned.",
},
damage: 80,
},
],
weaknesses: [
{
type: Type.FIRE,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

106
cards/swsh/swsh35/40.ts Normal file
View File

@ -0,0 +1,106 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-40",
localId: 40,
name: {
en: "Liepard",
},
tags: [
],
illustrator: "Hasuno",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/40/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/40/high",
},
},
// Card Pokémon Informations
evolveFrom: {
en: "Purrloin",
},
hp: 100,
type: [
Type.DARKNESS,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Limber",
},
text: {
en: "This Pokémon cant be Paralyzed.",
},
}
,
],
attacks: [
{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Slashing Claw",
},
damage: 90,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

88
cards/swsh/swsh35/41.ts Normal file
View File

@ -0,0 +1,88 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-41",
localId: 41,
name: {
en: "Scraggy",
},
illustrator: "miki kudo",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 70,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Stampede",
},
damage: 10,
},
{
cost: [
Type.DARKNESS,
Type.COLORLESS,
],
name: {
en: "Ram",
},
damage: 20,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

98
cards/swsh/swsh35/42.ts Normal file
View File

@ -0,0 +1,98 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-42",
localId: 42,
name: {
en: "Scrafty",
},
illustrator: "tetsuya koizumi",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Scraggy",
},
hp: 120,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.DARKNESS,
],
name: {
en: "Corner",
},
text: {
en: "During your opponents next turn, the Defending Pokémon cant retreat.",
},
damage: 30,
},
{
cost: [
Type.DARKNESS,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Bad Brawl",
},
text: {
en: "If you played Piers from your hand during this turn, this attack does 90 more damage.",
},
damage: "90+",
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

78
cards/swsh/swsh35/43.ts Normal file
View File

@ -0,0 +1,78 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-43",
localId: 43,
name: {
en: "Trubbish",
},
illustrator: "nagimiso",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 60,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Venoshock",
},
text: {
en: "If your opponents Active Pokémon is Poisoned, this attack does 50 more damage.",
},
damage: "20+",
},
],
weaknesses: [
{
type: Type.FIGHTING,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

103
cards/swsh/swsh35/44.ts Normal file
View File

@ -0,0 +1,103 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-44",
localId: 44,
name: {
en: "Inkay",
},
tags: [
],
illustrator: "sui",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/44/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/44/high",
},
},
// Card Pokémon Informations
hp: 60,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.DARKNESS,
],
name: {
en: "Tackle",
},
damage: 10,
},
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Attack from Behind",
},
text: {
en: "If your opponents Active Pokémon is Confused, this attack does 50 more damage.",
},
damage: "20+",
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

99
cards/swsh/swsh35/45.ts Normal file
View File

@ -0,0 +1,99 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-45",
localId: 45,
name: {
en: "Malamar",
},
illustrator: "kawayoo",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Inkay",
},
hp: 120,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.DARKNESS,
Type.COLORLESS,
],
name: {
en: "Eerie Wave",
},
text: {
en: "Your opponents Active Pokémon is now Confused.",
},
damage: 50,
},
{
cost: [
Type.DARKNESS,
Type.DARKNESS,
Type.COLORLESS,
],
name: {
en: "Random Peck",
},
text: {
en: "Flip 2 coins. This attack does 40 more damage for each heads.",
},
damage: "80+",
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

90
cards/swsh/swsh35/46.ts Normal file
View File

@ -0,0 +1,90 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-46",
localId: 46,
name: {
en: "Nickit",
},
illustrator: "Naoki Saito",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 70,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Filch",
},
text: {
en: "Draw a card.",
},
},
{
cost: [
Type.DARKNESS,
Type.COLORLESS,
],
name: {
en: "Tail Smack",
},
damage: 30,
},
],
weaknesses: [
{
type: Type.GRASS,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

97
cards/swsh/swsh35/47.ts Normal file
View File

@ -0,0 +1,97 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-47",
localId: 47,
name: {
en: "Duraludon V",
},
tags: [
],
illustrator: "aky CG Works",
rarity: Rarity.ULTRARARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/47/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/47/high",
},
},
// Card Pokémon Informations
hp: 220,
type: [
Type.METAL,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Hard Coat",
},
text: {
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
},
}
,
],
weaknesses: [
{
type: Type.FIRE,
value: "×2",
},
],
resistances: [
{
type: Type.GRASS,
value: "-30",
},
],
retreat: 3,
// Card Trainer/Energy informations
effect: {
en: "When your Pokémon V is Knocked Out, your opponent takes 2 Prize cards.",
},
}
export default card

82
cards/swsh/swsh35/48.ts Normal file
View File

@ -0,0 +1,82 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-48",
localId: 48,
name: {
en: "Swablu",
},
illustrator: "0313",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 50,
type: [
Type.COLORLESS,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Peck",
},
damage: 20,
},
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
resistances: [
{
type: Type.FIGHTING,
value: "-30",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

113
cards/swsh/swsh35/49.ts Normal file
View File

@ -0,0 +1,113 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-49",
localId: 49,
name: {
en: "Altaria",
},
tags: [
],
illustrator: "Taira Akitsu",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/49/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/49/high",
},
},
// Card Pokémon Informations
evolveFrom: {
en: "Swablu",
},
hp: 110,
type: [
Type.COLORLESS,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Miraculous Charm",
},
text: {
en: "Prevent all damage done to this Pokémon by attacks from your opponents Pokémon V and Pokémon-GX.",
},
}
,
],
attacks: [
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Speed Dive",
},
damage: 60,
},
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
resistances: [
{
type: Type.FIGHTING,
value: "-30",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

93
cards/swsh/swsh35/5.ts Normal file
View File

@ -0,0 +1,93 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-5",
localId: 5,
name: {
en: "Eldegoss V",
},
illustrator: "5ban Graphics",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 180,
type: [
Type.GRASS,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Happy Match",
},
text: {
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may put a Supporter card from your discard pile into your hand.",
},
}
,
],
attacks: [
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Float Up",
},
text: {
en: "You may shuffle this Pokémon and all attached cards into your deck.",
},
damage: 50,
},
],
weaknesses: [
{
type: Type.FIRE,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

49
cards/swsh/swsh35/50.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-50",
localId: 50,
name: {
en: "Bede",
},
illustrator: "Naoki Saito",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Attach a basic Energy card from your hand to 1 of your Benched Pokémon.",
},
}
export default card

61
cards/swsh/swsh35/51.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-51",
localId: 51,
name: {
en: "Full Heal",
},
tags: [
],
illustrator: "Yoshinobu Saito",
rarity: Rarity.COMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/51/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/51/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Your Active Pokémon recovers from all Special Conditions.",
},
}
export default card

49
cards/swsh/swsh35/52.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-52",
localId: 52,
name: {
en: "Great Ball",
},
illustrator: "Toyste Beach",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Look at the top 7 cards of your deck. You may reveal a Pokémon you find there and put it into your hand. Shuffle the other cards back into your deck.",
},
}
export default card

61
cards/swsh/swsh35/53.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-53",
localId: 53,
name: {
en: "Hop",
},
tags: [
],
illustrator: "Sanosuke Sakuma",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/53/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/53/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Draw 3 cards.",
},
}
export default card

49
cards/swsh/swsh35/54.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-54",
localId: 54,
name: {
en: "Hyper Potion",
},
illustrator: "Ryo Ueda",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Heal 120 damage from 1 of your Pokémon that has at least 2 Energy attached. If you healed any damage in this way, discard 2 Energy from it.",
},
}
export default card

61
cards/swsh/swsh35/55.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-55",
localId: 55,
name: {
en: "Kabu",
},
tags: [
],
illustrator: "take",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/55/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/55/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Shuffle your hand into your deck. Then, draw 4 cards. If your Active Pokémon is your only Pokémon in play, draw 8 cards instead.",
},
}
export default card

49
cards/swsh/swsh35/56.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-56",
localId: 56,
name: {
en: "Marnie",
},
illustrator: "kirisAki",
rarity: Rarity.RARE,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Each player shuffles their hand and puts it on the bottom of their deck. If either player put any cards on the bottom of their deck in this way, you draw 5 cards, and your opponent draws 4 cards.",
},
}
export default card

61
cards/swsh/swsh35/57.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-57",
localId: 57,
name: {
en: "Milo",
},
tags: [
],
illustrator: "take",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/57/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/57/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Discard up to 2 cards from your hand, and draw 2 cards for each card you discarded in this way.",
},
}
export default card

49
cards/swsh/swsh35/58.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-58",
localId: 58,
name: {
en: "Piers",
},
illustrator: "take",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Search your deck for an Energy card and a Darkness Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.",
},
}
export default card

61
cards/swsh/swsh35/59.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-59",
localId: 59,
name: {
en: "Poké Ball",
},
tags: [
],
illustrator: "Studio Bora Inc.",
rarity: Rarity.COMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/59/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/59/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Flip a coin. If heads, search your deck for a Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
},
}
export default card

90
cards/swsh/swsh35/6.ts Normal file
View File

@ -0,0 +1,90 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-6",
localId: 6,
name: {
en: "Vulpix",
},
illustrator: "Shibuzoh.",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 60,
type: [
Type.FIRE,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Gnaw",
},
damage: 10,
},
{
cost: [
Type.FIRE,
Type.COLORLESS,
],
name: {
en: "Singe",
},
text: {
en: "Your opponents Active Pokémon is now Burned.",
},
},
],
weaknesses: [
{
type: Type.WATER,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

61
cards/swsh/swsh35/60.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-60",
localId: 60,
name: {
en: "Pokémon Center Lady",
},
tags: [
],
illustrator: "kirisAki",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/60/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/60/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Heal 60 damage from 1 of your Pokémon, and it recovers from all Special Conditions.",
},
}
export default card

61
cards/swsh/swsh35/61.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-61",
localId: 61,
name: {
en: "Potion",
},
tags: [
],
illustrator: "Ryo Ueda",
rarity: Rarity.COMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/61/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/61/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Heal 30 damage from 1 of your Pokémon.",
},
}
export default card

49
cards/swsh/swsh35/62.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-62",
localId: 62,
name: {
en: "Professors Research (Professor Magnolia)",
},
illustrator: "Yusuke Ohmura",
rarity: Rarity.RARE,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Discard your hand and draw 7 cards.",
},
}
export default card

61
cards/swsh/swsh35/63.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-63",
localId: 63,
name: {
en: "Rotom Bike",
},
tags: [
],
illustrator: "5ban Graphics",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/63/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/63/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Draw cards until you have 6 cards in your hand. Your turn ends.",
},
}
export default card

61
cards/swsh/swsh35/64.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-64",
localId: 64,
name: {
en: "Rotom Phone",
},
tags: [
],
illustrator: "Ryo Ueda",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/64/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/64/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Look at the top 5 cards of your deck, choose 1 of them, and shuffle the other cards back into your deck. Then, put the card you chose on top of your deck.",
},
}
export default card

61
cards/swsh/swsh35/65.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-65",
localId: 65,
name: {
en: "Sonia",
},
tags: [
],
illustrator: "Yusuke Ohmura",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/65/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/65/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Search your deck for up to 2 Basic Pokémon or up to 2 basic Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.",
},
}
export default card

49
cards/swsh/swsh35/66.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-66",
localId: 66,
name: {
en: "Suspicious Food Tin",
},
illustrator: "Ryo Ueda",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Heal 80 damage from 1 of your Pokémon that has at least 1 Psychic Energy attached. If you healed any damage in this way, discard a Psychic Energy from it.",
},
}
export default card

61
cards/swsh/swsh35/67.ts Normal file
View File

@ -0,0 +1,61 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-67",
localId: 67,
name: {
en: "Team Yell Grunt",
},
tags: [
],
illustrator: "nagimiso",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/67/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/67/high",
},
},
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Put an Energy attached to 1 of your opponents Pokémon into their hand.",
},
}
export default card

49
cards/swsh/swsh35/68.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-68",
localId: 68,
name: {
en: "Turffield Stadium",
},
illustrator: "aky CG Works",
rarity: Rarity.UNCOMMON,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Once during each players turn, that player may search their deck for an Evolution Grass Pokémon, reveal it, and put it into their hand. Then, that player shuffles their deck.",
},
}
export default card

89
cards/swsh/swsh35/69.ts Normal file
View File

@ -0,0 +1,89 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-69",
localId: 69,
name: {
en: "Drednaw V",
},
tags: [
],
illustrator: "aky CG Works",
rarity: Rarity.ULTRARARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/69/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/69/high",
},
},
// Card Pokémon Informations
hp: 210,
type: [
Type.WATER,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Solid Shell",
},
text: {
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
},
}
,
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
retreat: 4,
// Card Trainer/Energy informations
effect: {
en: "When your Pokémon V is Knocked Out, your opponent takes 2 Prize cards.",
},
}
export default card

90
cards/swsh/swsh35/7.ts Normal file
View File

@ -0,0 +1,90 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-7",
localId: 7,
name: {
en: "Victini",
},
illustrator: "Taira Akitsu",
rarity: Rarity.UNCOMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 70,
type: [
Type.FIRE,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Quick Draw",
},
text: {
en: "Draw a card.",
},
},
{
cost: [
Type.FIRE,
Type.COLORLESS,
],
name: {
en: "Combustion",
},
damage: 30,
},
],
weaknesses: [
{
type: Type.WATER,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

92
cards/swsh/swsh35/70.ts Normal file
View File

@ -0,0 +1,92 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-70",
localId: 70,
name: {
en: "Gardevoir V",
},
illustrator: "PLANETA Mochizuki",
rarity: Rarity.ULTRARARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 210,
type: [
Type.PSYCHIC,
],
attacks: [
{
cost: [
Type.PSYCHIC,
],
name: {
en: "Magical Shot",
},
damage: 30,
},
{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS,
],
name: {
en: "Swelling Pulse",
},
text: {
en: "If this Pokémon was healed during this turn, this attack does 80 more damage.",
},
damage: "120+",
},
],
weaknesses: [
{
type: Type.METAL,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

97
cards/swsh/swsh35/71.ts Normal file
View File

@ -0,0 +1,97 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-71",
localId: 71,
name: {
en: "Galarian Cursola V",
},
tags: [
],
illustrator: "5ban Graphics",
rarity: Rarity.ULTRARARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/71/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/71/high",
},
},
// Card Pokémon Informations
hp: 190,
type: [
Type.PSYCHIC,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Gnawing Aura",
},
text: {
en: "As long as this Pokémon is in the Active Spot, whenever your opponent attaches an Energy card from their hand to 1 of their Pokémon, put 3 damage counters on that Pokémon.",
},
}
,
],
weaknesses: [
{
type: Type.DARKNESS,
value: "×2",
},
],
resistances: [
{
type: Type.FIGHTING,
value: "-30",
},
],
retreat: 2,
// Card Trainer/Energy informations
effect: {
en: "When your Pokémon V is Knocked Out, your opponent takes 2 Prize cards.",
},
}
export default card

74
cards/swsh/swsh35/72.ts Normal file
View File

@ -0,0 +1,74 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-72",
localId: 72,
name: {
en: "Grapploct V",
},
tags: [
],
illustrator: "PLANETA Igarashi",
rarity: Rarity.ULTRARARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/72/low",
},
high: {
en: "https://assets.tcgdex.net/en/swsh/swsh35/72/high",
},
},
// Card Pokémon Informations
hp: 210,
type: [
Type.FIGHTING,
],
weaknesses: [
{
type: Type.PSYCHIC,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
effect: {
en: "When your Pokémon V is Knocked Out, your opponent takes 2 Prize cards.",
},
}
export default card

49
cards/swsh/swsh35/73.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-73",
localId: 73,
name: {
en: "Hop",
},
illustrator: "Naoki Saito",
rarity: Rarity.ULTRARARE,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Draw 3 cards.",
},
}
export default card

99
cards/swsh/swsh35/74.ts Normal file
View File

@ -0,0 +1,99 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-74",
localId: 74,
name: {
en: "Charizard VMAX",
},
illustrator: "aky CG Works",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Charizard V",
},
hp: 330,
type: [
Type.FIRE,
],
attacks: [
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Claw Slash",
},
damage: 100,
},
{
cost: [
Type.FIRE,
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "G-Max Wildfire",
},
text: {
en: "Discard 2 Energy from this Pokémon.",
},
damage: 300,
},
],
weaknesses: [
{
type: Type.WATER,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

97
cards/swsh/swsh35/75.ts Normal file
View File

@ -0,0 +1,97 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-75",
localId: 75,
name: {
en: "Drednaw VMAX",
},
illustrator: "aky CG Works",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Drednaw V",
},
hp: 320,
type: [
Type.WATER,
],
abilities: [
{
type: AbilityType.TALENT,
name: {
en: "Solid Shell",
},
text: {
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
},
}
,
],
attacks: [
{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
],
name: {
en: "G-Max Headbutt",
},
text: {
en: "Flip a coin. If heads, this attack does 80 more damage.",
},
damage: "160+",
},
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "×2",
},
],
retreat: 4,
// Card Trainer/Energy informations
}
export default card

82
cards/swsh/swsh35/76.ts Normal file
View File

@ -0,0 +1,82 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-76",
localId: 76,
name: {
en: "Gardevoir VMAX",
},
illustrator: "5ban Graphics",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
evolveFrom: {
en: "Gardevoir V",
},
hp: 320,
type: [
Type.PSYCHIC,
],
attacks: [
{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS,
],
name: {
en: "Max Cure",
},
text: {
en: "Heal 50 damage from this Pokémon.",
},
damage: 180,
},
],
weaknesses: [
{
type: Type.METAL,
value: "×2",
},
],
retreat: 2,
// Card Trainer/Energy informations
}
export default card

49
cards/swsh/swsh35/77.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-77",
localId: 77,
name: {
en: "Kabu",
},
illustrator: "Hitoshi Ariga",
rarity: Rarity.RARE,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Shuffle your hand into your deck. Then, draw 4 cards. If your Active Pokémon is your only Pokémon in play, draw 8 cards instead.",
},
}
export default card

49
cards/swsh/swsh35/78.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-78",
localId: 78,
name: {
en: "Piers",
},
illustrator: "kirisAki",
rarity: Rarity.RARE,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Search your deck for an Energy card and a Darkness Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.",
},
}
export default card

95
cards/swsh/swsh35/79.ts Normal file
View File

@ -0,0 +1,95 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-79",
localId: 79,
name: {
en: "Charizard V",
},
illustrator: "5ban Graphics",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 220,
type: [
Type.FIRE,
],
attacks: [
{
cost: [
Type.COLORLESS,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Claw Slash",
},
damage: 80,
},
{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Fire Spin",
},
text: {
en: "Discard 2 Energy from this Pokémon.",
},
damage: 220,
},
],
weaknesses: [
{
type: Type.WATER,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

98
cards/swsh/swsh35/8.ts Normal file
View File

@ -0,0 +1,98 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-8",
localId: 8,
name: {
en: "Incineroar V",
},
illustrator: "Kouki Saitou",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 220,
type: [
Type.FIRE,
],
attacks: [
{
cost: [
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
],
name: {
en: "Grand Flame",
},
text: {
en: "Attach up to 2 Fire Energy cards from your discard pile to 1 of your Benched Pokémon.",
},
damage: 90,
},
{
cost: [
Type.FIRE,
Type.FIRE,
Type.FIRE,
Type.COLORLESS,
],
name: {
en: "Flare Blitzer",
},
text: {
en: "This Pokémon also does 30 damage to itself.",
},
damage: 220,
},
],
weaknesses: [
{
type: Type.WATER,
value: "×2",
},
],
retreat: 3,
// Card Trainer/Energy informations
}
export default card

49
cards/swsh/swsh35/80.ts Normal file
View File

@ -0,0 +1,49 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-80",
localId: 80,
name: {
en: "Suspicious Food Tin",
},
illustrator: "Ryo Ueda",
rarity: Rarity.RARE,
category: Category.TRAINER,
set,
// Card Pokémon Informations
// Card Trainer/Energy informations
effect: {
en: "Heal 80 damage from 1 of your Pokémon that has at least 1 Psychic Energy attached. If you healed any damage in this way, discard a Psychic Energy from it.",
},
}
export default card

89
cards/swsh/swsh35/9.ts Normal file
View File

@ -0,0 +1,89 @@
import Card from '@tcgdex/sdk/interfaces/Card'
import Type from '@tcgdex/sdk/interfaces/Type'
import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/swsh/swsh35'
const card: Card = {
// Card Global Informations
id: "swsh35-9",
localId: 9,
name: {
en: "Sizzlipede",
},
illustrator: "Akira Komayama",
rarity: Rarity.COMMON,
category: Category.POKEMON,
set,
// Card Pokémon Informations
hp: 70,
type: [
Type.FIRE,
],
attacks: [
{
cost: [
Type.COLORLESS,
],
name: {
en: "Bite",
},
damage: 10,
},
{
cost: [
Type.FIRE,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Combustion",
},
damage: 50,
},
],
weaknesses: [
{
type: Type.WATER,
value: "×2",
},
],
retreat: 1,
// Card Trainer/Energy informations
}
export default card

32
sets/swsh/swsh35.ts Normal file
View File

@ -0,0 +1,32 @@
import Set from '@tcgdex/sdk/interfaces/Set'
import swsh from '../../expansions/swsh'
const swsh2: Set = {
name: {
en: "Champion's Path"
},
expansion: swsh,
expansionCode: "swsh",
code: "swsh35",
// tcgoCode
cardCount: {
total: 80,
official: 70
},
releaseDate: "2020-09-25",
legal: {
standard: true,
expanded: true
},
images: {
symbol: "https://assets.tcgdex.net/univ/swsh/swsh35/symbol",
logo: "https://assets.tcgdex.net/en/swsh/swsh35/logo"
}
}
export default swsh2