mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 19:02:10 +00:00
Added most of Swsh2 cards
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
6a58422ae6
commit
d76dfbac94
87
cards/swsh/swsh2/1.ts
Normal file
87
cards/swsh/swsh2/1.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-1",
|
||||
|
||||
localId: 1,
|
||||
|
||||
name: {
|
||||
en: "Caterpie",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Uta",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Adaptive Evolution",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon can evolve during your first turn or the turn you play it.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gnaw",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
75
cards/swsh/swsh2/10.ts
Normal file
75
cards/swsh/swsh2/10.ts
Normal file
@ -0,0 +1,75 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-10",
|
||||
|
||||
localId: 10,
|
||||
|
||||
name: {
|
||||
en: "Surskit",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Agility",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh2/100.ts
Normal file
94
cards/swsh/swsh2/100.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-100",
|
||||
|
||||
localId: 100,
|
||||
|
||||
name: {
|
||||
en: "Whiscash",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "kawayoo",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Barboach",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Submerge",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "As long as this Pokémon is on your Bench, prevent all damage done to this Pokémon by attacks (both yours and your opponent’s).",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Earthquake",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack also does 20 damage to each of your Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
76
cards/swsh/swsh2/101.ts
Normal file
76
cards/swsh/swsh2/101.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-101",
|
||||
|
||||
localId: 101,
|
||||
|
||||
name: {
|
||||
en: "Galarian Yamask",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Reckless Charge",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh2/102.ts
Normal file
96
cards/swsh/swsh2/102.ts
Normal file
@ -0,0 +1,96 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-102",
|
||||
|
||||
localId: 102,
|
||||
|
||||
name: {
|
||||
en: "Galarian Runerigus",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "TOKIYA",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Galarian Yamask",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Spreading Spite",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "For each damage counter on this Galarian Runerigus, put 2 damage counters on your opponent’s Pokémon in any way you like.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Mad Hammer",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
77
cards/swsh/swsh2/103.ts
Normal file
77
cards/swsh/swsh2/103.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-103",
|
||||
|
||||
localId: 103,
|
||||
|
||||
name: {
|
||||
en: "Binacle",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Saya Tsuruta",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dual Chop",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 50 damage for each heads.",
|
||||
},
|
||||
|
||||
damage: "50×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
97
cards/swsh/swsh2/104.ts
Normal file
97
cards/swsh/swsh2/104.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-104",
|
||||
|
||||
localId: 104,
|
||||
|
||||
name: {
|
||||
en: "Barbaracle",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Binacle",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Rock Hurl",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack’s damage isn’t affected by Resistance.",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hand Press",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If you have more cards in your hand than your opponent, this attack does 80 more damage.",
|
||||
},
|
||||
|
||||
damage: "80+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
72
cards/swsh/swsh2/105.ts
Normal file
72
cards/swsh/swsh2/105.ts
Normal file
@ -0,0 +1,72 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-105",
|
||||
|
||||
localId: 105,
|
||||
|
||||
name: {
|
||||
en: "Rolycoly",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
91
cards/swsh/swsh2/106.ts
Normal file
91
cards/swsh/swsh2/106.ts
Normal file
@ -0,0 +1,91 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-106",
|
||||
|
||||
localId: 106,
|
||||
|
||||
name: {
|
||||
en: "Carkol",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Rolycoly",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Heat Crash",
|
||||
},
|
||||
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/107.ts
Normal file
93
cards/swsh/swsh2/107.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-107",
|
||||
|
||||
localId: 107,
|
||||
|
||||
name: {
|
||||
en: "Coalossal",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Carkol",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Tar Generator",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Once during your turn, you may attach a Fire Energy card, a Fighting Energy card, or 1 of each from your discard pile to your Pokémon in any way you like.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Flaming Avalanche",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/108.ts
Normal file
93
cards/swsh/swsh2/108.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-108",
|
||||
|
||||
localId: 108,
|
||||
|
||||
name: {
|
||||
en: "Sandaconda V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sand Eater",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Attach a Fighting Energy card from your discard pile to this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sand Breath",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard 2 Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 220,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
91
cards/swsh/swsh2/109.ts
Normal file
91
cards/swsh/swsh2/109.ts
Normal file
@ -0,0 +1,91 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-109",
|
||||
|
||||
localId: 109,
|
||||
|
||||
name: {
|
||||
en: "Falinks",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Call for Family",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 Basic Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Team Attack",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 damage for each of your Benched Pokémon that has \"Falinks\" in its name.",
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.PSYCHIC,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh2/11.ts
Normal file
95
cards/swsh/swsh2/11.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-11",
|
||||
|
||||
localId: 11,
|
||||
|
||||
name: {
|
||||
en: "Masquerain",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "chibi",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Surskit",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Threatening Pattern",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, Energy can’t be attached from your opponent's hand to the Defending Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "U-turn",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
92
cards/swsh/swsh2/110.ts
Normal file
92
cards/swsh/swsh2/110.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-110",
|
||||
|
||||
localId: 110,
|
||||
|
||||
name: {
|
||||
en: "Falinks V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Iron Defense Formation",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "All of your Pokémon that have \"Falinks\" in their name take 20 less damage from your opponent’s attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Giga Impact",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
},
|
||||
|
||||
damage: 210,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.PSYCHIC,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/111.ts
Normal file
93
cards/swsh/swsh2/111.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-111",
|
||||
|
||||
localId: 111,
|
||||
|
||||
name: {
|
||||
en: "Stonjourner",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Mega Kick",
|
||||
},
|
||||
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Power Press",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon has at least 1 extra Energy attached (in addition to this attack's cost), this attack does 60 more damage.",
|
||||
},
|
||||
|
||||
damage: "120+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
72
cards/swsh/swsh2/112.ts
Normal file
72
cards/swsh/swsh2/112.ts
Normal file
@ -0,0 +1,72 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-112",
|
||||
|
||||
localId: 112,
|
||||
|
||||
name: {
|
||||
en: "Koffing",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Kyoko Umemoto",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Suffocating Gas",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
92
cards/swsh/swsh2/113.ts
Normal file
92
cards/swsh/swsh2/113.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-113",
|
||||
|
||||
localId: 113,
|
||||
|
||||
name: {
|
||||
en: "Galarian Weezing",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Koffing",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Neutralizing Gas",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "As long as this Pokémon is in the Active Spot, your opponent’s Pokémon in play have no Abilities, except for Neutralizing Gas.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Severe Poison",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned. Put 4 damage counters instead of 1 on that Pokémon during Pokémon Checkup.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
76
cards/swsh/swsh2/114.ts
Normal file
76
cards/swsh/swsh2/114.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-114",
|
||||
|
||||
localId: 114,
|
||||
|
||||
name: {
|
||||
en: "Stunky",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Poison Gas",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh2/115.ts
Normal file
94
cards/swsh/swsh2/115.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-115",
|
||||
|
||||
localId: 115,
|
||||
|
||||
name: {
|
||||
en: "Skuntank",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "sowsow",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Stunky",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Poison Ring",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned. During your opponent's next turn, the Defending Pokémon can’t retreat.",
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
90
cards/swsh/swsh2/116.ts
Normal file
90
cards/swsh/swsh2/116.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-116",
|
||||
|
||||
localId: 116,
|
||||
|
||||
name: {
|
||||
en: "Spiritomb",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Splitting Spite",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard the top card of each player’s deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dripping Grudge",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Put 1 damage counter on your opponent's Active Pokémon for each Pokémon in your discard pile.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
76
cards/swsh/swsh2/117.ts
Normal file
76
cards/swsh/swsh2/117.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-117",
|
||||
|
||||
localId: 117,
|
||||
|
||||
name: {
|
||||
en: "Trubbish",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Venoshock",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your opponent’s 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
|
83
cards/swsh/swsh2/119.ts
Normal file
83
cards/swsh/swsh2/119.ts
Normal file
@ -0,0 +1,83 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-119",
|
||||
|
||||
localId: 119,
|
||||
|
||||
name: {
|
||||
en: "Vullaby",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Pluck",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Before doing damage, discard all Pokémon Tools from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
88
cards/swsh/swsh2/12.ts
Normal file
88
cards/swsh/swsh2/12.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-12",
|
||||
|
||||
localId: 12,
|
||||
|
||||
name: {
|
||||
en: "Snover",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Beat",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Razor Leaf",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh2/120.ts
Normal file
102
cards/swsh/swsh2/120.ts
Normal file
@ -0,0 +1,102 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-120",
|
||||
|
||||
localId: 120,
|
||||
|
||||
name: {
|
||||
en: "Mandibuzz",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "kodama",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Vullaby",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bone Rush",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin until you get tails. This attack does 30 damage for each heads.",
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Blindside",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 100 damage to 1 of your opponent’s Pokémon that has any damage counters on it. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/121.ts
Normal file
93
cards/swsh/swsh2/121.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-121",
|
||||
|
||||
localId: 121,
|
||||
|
||||
name: {
|
||||
en: "Malamar V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Eske Yoshinob",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Drag Off",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon. This attack does 30 damage to the new Active Pokémon.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Brain Shake",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Confused.",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
80
cards/swsh/swsh2/122.ts
Normal file
80
cards/swsh/swsh2/122.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-122",
|
||||
|
||||
localId: 122,
|
||||
|
||||
name: {
|
||||
en: "Malamar VMAX",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Malamar V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Max Jammer",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent reveals their hand. Choose a card you find there and put it on the bottom of their deck.",
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
86
cards/swsh/swsh2/123.ts
Normal file
86
cards/swsh/swsh2/123.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-123",
|
||||
|
||||
localId: 123,
|
||||
|
||||
name: {
|
||||
en: "Impidimp",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Beat",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Stampede",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/124.ts
Normal file
93
cards/swsh/swsh2/124.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-124",
|
||||
|
||||
localId: 124,
|
||||
|
||||
name: {
|
||||
en: "Morgrem",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Impidimp",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "False Surrender",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack’s damage isn’t affected by any effects on your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh2/125.ts
Normal file
95
cards/swsh/swsh2/125.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-125",
|
||||
|
||||
localId: 125,
|
||||
|
||||
name: {
|
||||
en: "Grimmsnarl",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "nagimiso",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Morgrem",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Dark Oath",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "As long as this Pokémon is in the Active Spot, your opponent’s Active Pokémon’s attacks cost Colorless more.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Energy Press",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 more damage for each Energy attached to your opponent's Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: "100+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh2/126.ts
Normal file
96
cards/swsh/swsh2/126.ts
Normal file
@ -0,0 +1,96 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-126",
|
||||
|
||||
localId: 126,
|
||||
|
||||
name: {
|
||||
en: "Galarian Meowth",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Evolution Roar",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You must discard 2 cards from your hand in order to use this Ability. Once during your turn, you may search your deck for a Galarian Perrserker, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Scratch",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh2/127.ts
Normal file
102
cards/swsh/swsh2/127.ts
Normal file
@ -0,0 +1,102 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-127",
|
||||
|
||||
localId: 127,
|
||||
|
||||
name: {
|
||||
en: "Galarian Perrserker",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Naoki Saito",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Galarian Meowth",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Claw Dagger",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip 3 coins. This attack does 80 damage for each heads.",
|
||||
},
|
||||
|
||||
damage: "80×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh2/128.ts
Normal file
104
cards/swsh/swsh2/128.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-128",
|
||||
|
||||
localId: 128,
|
||||
|
||||
name: {
|
||||
en: "Scizor",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Scyther",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Raid",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon evolved from Scyther during this turn, this attack does 90 more damage.",
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Guard Claw",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh2/129.ts
Normal file
94
cards/swsh/swsh2/129.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-129",
|
||||
|
||||
localId: 129,
|
||||
|
||||
name: {
|
||||
en: "Bronzor",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Speed Dive",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh2/13.ts
Normal file
96
cards/swsh/swsh2/13.ts
Normal file
@ -0,0 +1,96 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-13",
|
||||
|
||||
localId: 13,
|
||||
|
||||
name: {
|
||||
en: "Abomasnow",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Kazuma Koda",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Snover",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Soothing Scent",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Asleep.",
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Megaton Lariat",
|
||||
},
|
||||
|
||||
|
||||
damage: 140,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh2/130.ts
Normal file
101
cards/swsh/swsh2/130.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-130",
|
||||
|
||||
localId: 130,
|
||||
|
||||
name: {
|
||||
en: "Bronzong",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "MAHOU",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Bronzor",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Smack",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gyro Ball",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon. If you do, your opponent switches their Active Pokémon with 1 of their Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh2/131.ts
Normal file
101
cards/swsh/swsh2/131.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-131",
|
||||
|
||||
localId: 131,
|
||||
|
||||
name: {
|
||||
en: "Probopass",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Nosepass",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gravitational Drop",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 more damage for each Colorless in your opponent’s Active Pokémon’s Retreat Cost.",
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Heavy Impact",
|
||||
},
|
||||
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
97
cards/swsh/swsh2/132.ts
Normal file
97
cards/swsh/swsh2/132.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-132",
|
||||
|
||||
localId: 132,
|
||||
|
||||
name: {
|
||||
en: "Durant",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gathering Food",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "For each Energy attached to this Pokémon, search your deck for a Trainer card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Metal Claw",
|
||||
},
|
||||
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
81
cards/swsh/swsh2/133.ts
Normal file
81
cards/swsh/swsh2/133.ts
Normal file
@ -0,0 +1,81 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-133",
|
||||
|
||||
localId: 133,
|
||||
|
||||
name: {
|
||||
en: "Honedge",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Sekio",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slicing Blade",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh2/134.ts
Normal file
102
cards/swsh/swsh2/134.ts
Normal file
@ -0,0 +1,102 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-134",
|
||||
|
||||
localId: 134,
|
||||
|
||||
name: {
|
||||
en: "Doublade",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Aya Kusube",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Honedge",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Double Slash",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 80 damage for each heads.",
|
||||
},
|
||||
|
||||
damage: "80×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
100
cards/swsh/swsh2/135.ts
Normal file
100
cards/swsh/swsh2/135.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-135",
|
||||
|
||||
localId: 135,
|
||||
|
||||
name: {
|
||||
en: "Aegislash",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Doublade",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Big Shield",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "All of your Pokémon take 30 less damage from your opponent’s attacks (after applying Weakness and Resistance). You can’t apply more than 1 Big Shield Ability at a time.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Power Edge",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh2/136.ts
Normal file
101
cards/swsh/swsh2/136.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-136",
|
||||
|
||||
localId: 136,
|
||||
|
||||
name: {
|
||||
en: "Copperajah V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Adamantine Press",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wrack Down",
|
||||
},
|
||||
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh2/137.ts
Normal file
104
cards/swsh/swsh2/137.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-137",
|
||||
|
||||
localId: 137,
|
||||
|
||||
name: {
|
||||
en: "Copperajah VMAX",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Copperajah V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dangerous Nose",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your opponent’s Active Pokémon is a Basic Pokémon, this attack does 100 more damage.",
|
||||
},
|
||||
|
||||
damage: "100+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "G-Max Hammer",
|
||||
},
|
||||
|
||||
|
||||
damage: 240,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
98
cards/swsh/swsh2/138.ts
Normal file
98
cards/swsh/swsh2/138.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-138",
|
||||
|
||||
localId: 138,
|
||||
|
||||
name: {
|
||||
en: "Duraludon",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Metal Sharpener",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Attach a Metal Energy card from your discard pile to 1 of your Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Power Beam",
|
||||
},
|
||||
|
||||
|
||||
damage: 110,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
@ -4,87 +4,99 @@ 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 path from 'path'
|
||||
import swsh2 from '../../../sets/swsh/swsh2'
|
||||
import set from '../../../sets/swsh/swsh2'
|
||||
|
||||
const localId = path.basename(__filename).split(".")[0]
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-139",
|
||||
|
||||
// ids
|
||||
id: `swsh2-${localId}`,
|
||||
localId: isNaN(parseInt(localId)) ? localId : parseInt(localId),
|
||||
localId: 139,
|
||||
|
||||
dexId: 888,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Zacian",
|
||||
fr: "Zacian",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
name: {
|
||||
en: "Energy Stream"
|
||||
},
|
||||
text: {
|
||||
en: "Attach a Metal Energy card from your discard pile to this Pokémon."
|
||||
},
|
||||
damage: 30,
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
]
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Energy Stream",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Attach a Metal Energy card from your discard pile to this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
name: {
|
||||
en: "Smashing Edge"
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If tails, discard 2 Energy from this Pokémon."
|
||||
},
|
||||
damage: 120,
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
]
|
||||
}
|
||||
name: {
|
||||
en: "Smashing Edge",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If tails, discard 2 Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
value: "x2"
|
||||
}
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
value: "-30"
|
||||
},
|
||||
],
|
||||
type: Type.GRASS,
|
||||
|
||||
type: [
|
||||
Type.METAL
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: swsh2
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
88
cards/swsh/swsh2/14.ts
Normal file
88
cards/swsh/swsh2/14.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-14",
|
||||
|
||||
localId: 14,
|
||||
|
||||
name: {
|
||||
en: "Phantump",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "sui",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dark Guidance",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Put a Basic Pokémon from your discard pile onto your Bench.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Seed Bomb",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
@ -4,87 +4,99 @@ 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 path from 'path'
|
||||
import swsh2 from '../../../sets/swsh/swsh2'
|
||||
import set from '../../../sets/swsh/swsh2'
|
||||
|
||||
const localId = path.basename(__filename).split(".")[0]
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-140",
|
||||
|
||||
// ids
|
||||
id: `swsh2-${localId}`,
|
||||
localId: isNaN(parseInt(localId)) ? localId : parseInt(localId),
|
||||
localId: 140,
|
||||
|
||||
dexId: 889,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Zamazenta",
|
||||
fr: "Zamazenta",
|
||||
},
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.METAL
|
||||
],
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Guard Press",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent's next turn, this Pokémon takes 20 less famage from attacks (after applying Weakness and Resistance).",
|
||||
en: "During your opponent’s next turn, this Pokémon takes 20 less damage from attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
],
|
||||
damage: 30
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Power Rush",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If tails, during your next turn, this Pokémon can't attack."
|
||||
en: "Flip a coin. If tails, during your next turn, this Pokémon can’t attack.",
|
||||
},
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS
|
||||
]
|
||||
}
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
value: "x2"
|
||||
}
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
value: "-30"
|
||||
}
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: swsh2
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
92
cards/swsh/swsh2/141.ts
Normal file
92
cards/swsh/swsh2/141.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-141",
|
||||
|
||||
localId: 141,
|
||||
|
||||
name: {
|
||||
en: "Snorlax",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Eri Yamaki",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Collect",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Draw 2 cards.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Collapse",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon is now Asleep.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh2/142.ts
Normal file
96
cards/swsh/swsh2/142.ts
Normal file
@ -0,0 +1,96 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-142",
|
||||
|
||||
localId: 142,
|
||||
|
||||
name: {
|
||||
en: "Chatot",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "ryoma uratsuka",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Lucky Match",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may flip a coin. If heads, put a Supporter card from your discard pile into your hand.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Glide",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh2/143.ts
Normal file
96
cards/swsh/swsh2/143.ts
Normal file
@ -0,0 +1,96 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-143",
|
||||
|
||||
localId: 143,
|
||||
|
||||
name: {
|
||||
en: "Pidove",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Ryota Murayama",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Chirp",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 Pokémon with Fighting Resistance, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Razor Wing",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
99
cards/swsh/swsh2/144.ts
Normal file
99
cards/swsh/swsh2/144.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-144",
|
||||
|
||||
localId: 144,
|
||||
|
||||
name: {
|
||||
en: "Tranquill",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Saya Tsuruta",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Pidove",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Razor Wing",
|
||||
},
|
||||
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gust",
|
||||
},
|
||||
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
105
cards/swsh/swsh2/145.ts
Normal file
105
cards/swsh/swsh2/145.ts
Normal file
@ -0,0 +1,105 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-145",
|
||||
|
||||
localId: 145,
|
||||
|
||||
name: {
|
||||
en: "Unfezant",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Tranquill",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Daunt",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon’s attacks do 50 less damage (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Air Slash",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
89
cards/swsh/swsh2/146.ts
Normal file
89
cards/swsh/swsh2/146.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-146",
|
||||
|
||||
localId: 146,
|
||||
|
||||
name: {
|
||||
en: "Bunnelby",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Yuka Morii",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Burrow",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard the top card of your opponent’s deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Headbutt Bounce",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh2/147.ts
Normal file
96
cards/swsh/swsh2/147.ts
Normal file
@ -0,0 +1,96 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-147",
|
||||
|
||||
localId: 147,
|
||||
|
||||
name: {
|
||||
en: "Diggersby",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "kodama",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Bunnelby",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Mining Rush",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard up to 6 cards from the top of your deck. If you do, this attack does 30 damage for each card you discarded in this way.",
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Headbutt Bounce",
|
||||
},
|
||||
|
||||
|
||||
damage: 110,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh2/148.ts
Normal file
95
cards/swsh/swsh2/148.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-148",
|
||||
|
||||
localId: 148,
|
||||
|
||||
name: {
|
||||
en: "Hawlucha",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "tetsuya koizumi",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Windfall",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Shuffle your hand into your deck. Then, draw 5 cards.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Speed Attack",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
90
cards/swsh/swsh2/149.ts
Normal file
90
cards/swsh/swsh2/149.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-149",
|
||||
|
||||
localId: 149,
|
||||
|
||||
name: {
|
||||
en: "Stufful",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "so-taro",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Jump On",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 40 more damage.",
|
||||
},
|
||||
|
||||
damage: "40+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/15.ts
Normal file
93
cards/swsh/swsh2/15.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-15",
|
||||
|
||||
localId: 15,
|
||||
|
||||
name: {
|
||||
en: "Trevenant",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "kawayoo",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Phantump",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Seed Bomb",
|
||||
},
|
||||
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Shadow Cage",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent's next turn, the Defending Pokémon can't retreat.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
98
cards/swsh/swsh2/150.ts
Normal file
98
cards/swsh/swsh2/150.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-150",
|
||||
|
||||
localId: 150,
|
||||
|
||||
name: {
|
||||
en: "Bewear",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Stufful",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hammer Arm",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard the top card of your opponent’s deck.",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Big Throw",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, discard your opponent’s Active Pokémon and all attached cards.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
86
cards/swsh/swsh2/151.ts
Normal file
86
cards/swsh/swsh2/151.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-151",
|
||||
|
||||
localId: 151,
|
||||
|
||||
name: {
|
||||
en: "Skwovet",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Mina Nakai",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
92
cards/swsh/swsh2/152.ts
Normal file
92
cards/swsh/swsh2/152.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-152",
|
||||
|
||||
localId: 152,
|
||||
|
||||
name: {
|
||||
en: "Greedent",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "kirisAki",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Skwovet",
|
||||
},
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Greedy Tail",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Once during your turn, you may search your deck for a Pokémon Tool card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tail Smack",
|
||||
},
|
||||
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
92
cards/swsh/swsh2/153.ts
Normal file
92
cards/swsh/swsh2/153.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-153",
|
||||
|
||||
localId: 153,
|
||||
|
||||
name: {
|
||||
en: "Dubwool V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Soft Wool",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Revenge Blast",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 more damage for each Prize card your opponent has taken.",
|
||||
},
|
||||
|
||||
damage: "120+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/155.ts
Normal file
51
cards/swsh/swsh2/155.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-155",
|
||||
|
||||
localId: 155,
|
||||
|
||||
name: {
|
||||
en: "Burning Scarf",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Toyste Beach",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "If the Fire Pokémon this card is attached to is in the Active Spot and is damaged by an opponent’s attack (even if it is Knocked Out), the Attacking Pokémon is now Burned.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/156.ts
Normal file
51
cards/swsh/swsh2/156.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-156",
|
||||
|
||||
localId: 156,
|
||||
|
||||
name: {
|
||||
en: "Capacious Bucket",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "sadaji",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Search your deck for up to 2 Water Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/157.ts
Normal file
51
cards/swsh/swsh2/157.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-157",
|
||||
|
||||
localId: 157,
|
||||
|
||||
name: {
|
||||
en: "Cursed Shovel",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Toyste Beach",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "If the Pokémon this card is attached to is Knocked Out by damage from an opponent’s attack, discard the top 2 cards of your opponent’s deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/158.ts
Normal file
51
cards/swsh/swsh2/158.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-158",
|
||||
|
||||
localId: 158,
|
||||
|
||||
name: {
|
||||
en: "Dan",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Draw 2 cards. You and your opponent play Rock-Paper-Scissors until someone wins. If you win, draw 2 more cards.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/159.ts
Normal file
51
cards/swsh/swsh2/159.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-159",
|
||||
|
||||
localId: 159,
|
||||
|
||||
name: {
|
||||
en: "Full Heal",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Yoshinobu Saito",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Your Active Pokémon recovers from all Special Conditions.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
72
cards/swsh/swsh2/16.ts
Normal file
72
cards/swsh/swsh2/16.ts
Normal file
@ -0,0 +1,72 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-16",
|
||||
|
||||
localId: 16,
|
||||
|
||||
name: {
|
||||
en: "Grubbin",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gnaw",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/160.ts
Normal file
51
cards/swsh/swsh2/160.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-160",
|
||||
|
||||
localId: 160,
|
||||
|
||||
name: {
|
||||
en: "Galar Mine",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "The Retreat Cost of both Active Pokémon is ColorlessColorless more.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/161.ts
Normal file
51
cards/swsh/swsh2/161.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-161",
|
||||
|
||||
localId: 161,
|
||||
|
||||
name: {
|
||||
en: "Milo",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "take",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// 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
|
51
cards/swsh/swsh2/162.ts
Normal file
51
cards/swsh/swsh2/162.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-162",
|
||||
|
||||
localId: 162,
|
||||
|
||||
name: {
|
||||
en: "Nugget",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "sadaji",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "You can play this card only if you drew it from your deck at the beginning of your turn, before you put it into your hand. \n\nDraw 3 cards.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/163.ts
Normal file
51
cards/swsh/swsh2/163.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-163",
|
||||
|
||||
localId: 163,
|
||||
|
||||
name: {
|
||||
en: "Oleana",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Yusuke Ohmura",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "You can play this card only if you discard 2 other cards from your hand.\n\nYour opponent reveals their hand. Put a Trainer card you find there on the bottom of their deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/164.ts
Normal file
51
cards/swsh/swsh2/164.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-164",
|
||||
|
||||
localId: 164,
|
||||
|
||||
name: {
|
||||
en: "Poké Ball",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Studio Bora Inc.",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// 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
|
51
cards/swsh/swsh2/165.ts
Normal file
51
cards/swsh/swsh2/165.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-165",
|
||||
|
||||
localId: 165,
|
||||
|
||||
name: {
|
||||
en: "Scoop Up Net",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Ryo Ueda",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Put 1 of your Pokémon that isn't a Pokémon V or a Pokémon-GX into your hand. (Discard all attached cards.)",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/166.ts
Normal file
51
cards/swsh/swsh2/166.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-166",
|
||||
|
||||
localId: 166,
|
||||
|
||||
name: {
|
||||
en: "Skyla",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Search your deck for a Trainer card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/167.ts
Normal file
51
cards/swsh/swsh2/167.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-167",
|
||||
|
||||
localId: 167,
|
||||
|
||||
name: {
|
||||
en: "Sonia",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Yusuke Ohmura",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// 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
|
51
cards/swsh/swsh2/168.ts
Normal file
51
cards/swsh/swsh2/168.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-168",
|
||||
|
||||
localId: 168,
|
||||
|
||||
name: {
|
||||
en: "Tool Scrapper",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Studio Bora Inc.",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Choose up to 2 Pokémon Tools attached to Pokémon (yours or your opponent’s) and discard them.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/169.ts
Normal file
51
cards/swsh/swsh2/169.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-169",
|
||||
|
||||
localId: 169,
|
||||
|
||||
name: {
|
||||
en: "Training Court",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Once during each player’s turn, that player may put a basic Energy card from their discard pile into their hand.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/17.ts
Normal file
93
cards/swsh/swsh2/17.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-17",
|
||||
|
||||
localId: 17,
|
||||
|
||||
name: {
|
||||
en: "Rillaboom V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Forest Feast",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 Basic Grass Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wood Hammer",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 220,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/170.ts
Normal file
51
cards/swsh/swsh2/170.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-170",
|
||||
|
||||
localId: 170,
|
||||
|
||||
name: {
|
||||
en: "Turffield Stadium",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Once during each player’s 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
|
50
cards/swsh/swsh2/171.ts
Normal file
50
cards/swsh/swsh2/171.ts
Normal file
@ -0,0 +1,50 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-171",
|
||||
|
||||
localId: 171,
|
||||
|
||||
name: {
|
||||
en: "Capture Energy",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.ENERGY,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "As long as this card is attached to a Pokémon, it provides Colorless Energy. \n\nWhen you attach this card from your hand to a Pokémon, search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
50
cards/swsh/swsh2/172.ts
Normal file
50
cards/swsh/swsh2/172.ts
Normal file
@ -0,0 +1,50 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-172",
|
||||
|
||||
localId: 172,
|
||||
|
||||
name: {
|
||||
en: "Horror Psychic Energy",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.ENERGY,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "As long as this card is attached to a Pokémon, it provides Psychic Energy.\n\nIf the Psychic Pokémon this card is attached to is in the Active Spot and is damaged by an opponent’s attack (even if it is Knocked Out), put 2 damage counters on the Attacking Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
50
cards/swsh/swsh2/173.ts
Normal file
50
cards/swsh/swsh2/173.ts
Normal file
@ -0,0 +1,50 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-173",
|
||||
|
||||
localId: 173,
|
||||
|
||||
name: {
|
||||
en: "Speed Lightning Energy",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.ENERGY,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "As long as this card is attached to a Pokémon, it provides Lightning Energy. \n\nWhen you attach this card from your hand to a Lightning Pokémon, draw 2 cards.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
50
cards/swsh/swsh2/174.ts
Normal file
50
cards/swsh/swsh2/174.ts
Normal file
@ -0,0 +1,50 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-174",
|
||||
|
||||
localId: 174,
|
||||
|
||||
name: {
|
||||
en: "Twin Energy",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.ENERGY,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "As long as this card is attached to a Pokémon that isn't a Pokémon V or a Pokémon-GX, it provides ColorlessColorless Energy. \n\nIf this card is attached to a Pokémon V or a Pokémon-GX, it provides Colorless Energy instead.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/175.ts
Normal file
93
cards/swsh/swsh2/175.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-175",
|
||||
|
||||
localId: 175,
|
||||
|
||||
name: {
|
||||
en: "Rillaboom V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Forest Feast",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 Basic Grass Pokémon and put them onto your Bench. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wood Hammer",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 220,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
91
cards/swsh/swsh2/176.ts
Normal file
91
cards/swsh/swsh2/176.ts
Normal file
@ -0,0 +1,91 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-176",
|
||||
|
||||
localId: 176,
|
||||
|
||||
name: {
|
||||
en: "Eldegoss V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
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
|
95
cards/swsh/swsh2/177.ts
Normal file
95
cards/swsh/swsh2/177.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-177",
|
||||
|
||||
localId: 177,
|
||||
|
||||
name: {
|
||||
en: "Ninetales V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Saki Hayashiro",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Nine-Tailed Shapeshifter",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Choose 1 of your opponent’s Active Pokémon’s attacks and use it as this attack.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Flamethrower",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.WATER,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
89
cards/swsh/swsh2/178.ts
Normal file
89
cards/swsh/swsh2/178.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-178",
|
||||
|
||||
localId: 178,
|
||||
|
||||
name: {
|
||||
en: "Cinderace V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Field Runner",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If a Stadium is in play, this Pokémon has no Retreat Cost.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Crimson Legs",
|
||||
},
|
||||
|
||||
|
||||
damage: 140,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.WATER,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh2/179.ts
Normal file
96
cards/swsh/swsh2/179.ts
Normal file
@ -0,0 +1,96 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-179",
|
||||
|
||||
localId: 179,
|
||||
|
||||
name: {
|
||||
en: "Milotic V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Ayaka Yoshida",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Aqua Impact",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 50 more damage for each Colorless in your opponent’s Active Pokémon’s Retreat Cost.",
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hypno Splash",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Asleep.",
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
92
cards/swsh/swsh2/180.ts
Normal file
92
cards/swsh/swsh2/180.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-180",
|
||||
|
||||
localId: 180,
|
||||
|
||||
name: {
|
||||
en: "Inteleon V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Snipe Shot",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 40 damage to 1 of your opponent's Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Aqua Report",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent reveals their hand.",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
91
cards/swsh/swsh2/181.ts
Normal file
91
cards/swsh/swsh2/181.ts
Normal file
@ -0,0 +1,91 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-181",
|
||||
|
||||
localId: 181,
|
||||
|
||||
name: {
|
||||
en: "Boltund V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Electrify",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 Lightning Energy cards and attach them to your Benched Pokémon in any way you like. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bolt Storm",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 more damage for each Lightning Energy attached to all of your Pokémon.",
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/182.ts
Normal file
93
cards/swsh/swsh2/182.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-182",
|
||||
|
||||
localId: 182,
|
||||
|
||||
name: {
|
||||
en: "Toxtricity V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Poison Jab",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Electric Riot",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your opponent’s Active Pokémon is Poisoned, this attack does 90 more damage.",
|
||||
},
|
||||
|
||||
damage: "90+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
97
cards/swsh/swsh2/183.ts
Normal file
97
cards/swsh/swsh2/183.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-183",
|
||||
|
||||
localId: 183,
|
||||
|
||||
name: {
|
||||
en: "Dragapult V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Jet Assault",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon moved from your Bench to the Active Spot this turn, this attack does 80 more damage.",
|
||||
},
|
||||
|
||||
damage: "60+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.DARKNESS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/184.ts
Normal file
93
cards/swsh/swsh2/184.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-184",
|
||||
|
||||
localId: 184,
|
||||
|
||||
name: {
|
||||
en: "Sandaconda V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sand Eater",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Attach a Fighting Energy card from your discard pile to this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sand Breath",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard 2 Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 220,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
92
cards/swsh/swsh2/185.ts
Normal file
92
cards/swsh/swsh2/185.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-185",
|
||||
|
||||
localId: 185,
|
||||
|
||||
name: {
|
||||
en: "Falinks V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Iron Defense Formation",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "All of your Pokémon that have \"Falinks\" in their name take 20 less damage from your opponent’s attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Giga Impact",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your next turn, this Pokémon can't attack.",
|
||||
},
|
||||
|
||||
damage: 210,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.PSYCHIC,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh2/186.ts
Normal file
93
cards/swsh/swsh2/186.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-186",
|
||||
|
||||
localId: 186,
|
||||
|
||||
name: {
|
||||
en: "Malamar V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Eske Yoshinob",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Drag Off",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon. This attack does 30 damage to the new Active Pokémon.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Brain Shake",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Confused.",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh2/187.ts
Normal file
101
cards/swsh/swsh2/187.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-187",
|
||||
|
||||
localId: 187,
|
||||
|
||||
name: {
|
||||
en: "Copperajah V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Adamantine Press",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wrack Down",
|
||||
},
|
||||
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
92
cards/swsh/swsh2/188.ts
Normal file
92
cards/swsh/swsh2/188.ts
Normal 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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-188",
|
||||
|
||||
localId: 188,
|
||||
|
||||
name: {
|
||||
en: "Dubwool V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Soft Wool",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Revenge Blast",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 more damage for each Prize card your opponent has taken.",
|
||||
},
|
||||
|
||||
damage: "120+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/189.ts
Normal file
51
cards/swsh/swsh2/189.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-189",
|
||||
|
||||
localId: 189,
|
||||
|
||||
name: {
|
||||
en: "Boss’s Orders (Giovanni)",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "nagimiso",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/190.ts
Normal file
51
cards/swsh/swsh2/190.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-190",
|
||||
|
||||
localId: 190,
|
||||
|
||||
name: {
|
||||
en: "Milo",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// 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
|
51
cards/swsh/swsh2/191.ts
Normal file
51
cards/swsh/swsh2/191.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-191",
|
||||
|
||||
localId: 191,
|
||||
|
||||
name: {
|
||||
en: "Oleana",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "kirisAki",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "You can play this card only if you discard 2 other cards from your hand.\n\nYour opponent reveals their hand. Put a Trainer card you find there on the bottom of their deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
51
cards/swsh/swsh2/192.ts
Normal file
51
cards/swsh/swsh2/192.ts
Normal file
@ -0,0 +1,51 @@
|
||||
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/swsh2'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh2-192",
|
||||
|
||||
localId: 192,
|
||||
|
||||
name: {
|
||||
en: "Sonia",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Naoki Saito",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// 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
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user