mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
Added Datas for SWSH4
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
2029a5ce9b
commit
fc5cd3aba3
78
cards/swsh/swsh4/1.ts
Normal file
78
cards/swsh/swsh4/1.ts
Normal file
@ -0,0 +1,78 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-1",
|
||||
|
||||
localId: 1,
|
||||
|
||||
name: {
|
||||
en: "Weedle",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "sui",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bug Hunch",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 Grass Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
76
cards/swsh/swsh4/10.ts
Normal file
76
cards/swsh/swsh4/10.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-10",
|
||||
|
||||
localId: 10,
|
||||
|
||||
name: {
|
||||
en: "Seedot",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Suwama Chiaki",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
90
cards/swsh/swsh4/100.ts
Normal file
90
cards/swsh/swsh4/100.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-100",
|
||||
|
||||
localId: 100,
|
||||
|
||||
name: {
|
||||
en: "Clobbopus",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Beat",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hammer In",
|
||||
},
|
||||
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.PSYCHIC,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
99
cards/swsh/swsh4/101.ts
Normal file
99
cards/swsh/swsh4/101.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-101",
|
||||
|
||||
localId: 101,
|
||||
|
||||
name: {
|
||||
en: "Grapploct",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Clobbopus",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Full Nelson",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tentacle Buster",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon used Full Nelson during your last turn, this attack does 120 more damage.",
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.PSYCHIC,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh4/102.ts
Normal file
95
cards/swsh/swsh4/102.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-102",
|
||||
|
||||
localId: 102,
|
||||
|
||||
name: {
|
||||
en: "Zamazenta",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.AMAZING,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Metal Armament",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Attach a basic Energy card from your discard pile to this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.FIGHTING,
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Amazing Shield",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, prevent all damage done to this Pokémon by attacks from Pokémon VMAX.",
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.PSYCHIC,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
90
cards/swsh/swsh4/103.ts
Normal file
90
cards/swsh/swsh4/103.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-103",
|
||||
|
||||
localId: 103,
|
||||
|
||||
name: {
|
||||
en: "Poochyena",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "ryoma uratsuka",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Rear Kick",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
97
cards/swsh/swsh4/104.ts
Normal file
97
cards/swsh/swsh4/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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-104",
|
||||
|
||||
localId: 104,
|
||||
|
||||
name: {
|
||||
en: "Mightyena",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Aya Kusube",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Poochyena",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ferocious Bellow",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon’s attacks do 50 less damage (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Pitch-Black Fangs",
|
||||
},
|
||||
|
||||
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh4/105.ts
Normal file
95
cards/swsh/swsh4/105.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-105",
|
||||
|
||||
localId: 105,
|
||||
|
||||
name: {
|
||||
en: "Sableye",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "KEIICHIRO ITO",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Filch",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Draw a card.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Torment",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Choose 1 of your opponent’s Active Pokémon’s attacks. During your opponent’s next turn, that Pokémon can’t use that attack.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
97
cards/swsh/swsh4/106.ts
Normal file
97
cards/swsh/swsh4/106.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-106",
|
||||
|
||||
localId: 106,
|
||||
|
||||
name: {
|
||||
en: "Drapion V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Eske Yoshinob",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wrack Down",
|
||||
},
|
||||
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hazardous Claws",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard 2 Energy from this Pokémon. Your opponent’s Active Pokémon is now Paralyzed and Poisoned.",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
81
cards/swsh/swsh4/107.ts
Normal file
81
cards/swsh/swsh4/107.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-107",
|
||||
|
||||
localId: 107,
|
||||
|
||||
name: {
|
||||
en: "Sandile",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Pani Kobayashi",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dredge Up",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard the top 3 cards of your opponent’s deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh4/108.ts
Normal file
96
cards/swsh/swsh4/108.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-108",
|
||||
|
||||
localId: 108,
|
||||
|
||||
name: {
|
||||
en: "Krokorok",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "sowsow",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Sandile",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dredge Up",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard the top 3 cards of your opponent’s deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/109.ts
Normal file
101
cards/swsh/swsh4/109.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-109",
|
||||
|
||||
localId: 109,
|
||||
|
||||
name: {
|
||||
en: "Krookodile",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Krokorok",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dredge Up",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard the top 3 cards of your opponent’s deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tantrum",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon is now Confused.",
|
||||
},
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
79
cards/swsh/swsh4/11.ts
Normal file
79
cards/swsh/swsh4/11.ts
Normal file
@ -0,0 +1,79 @@
|
||||
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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-11",
|
||||
|
||||
localId: 11,
|
||||
|
||||
name: {
|
||||
en: "Nuzleaf",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "otumami",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Seedot",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Razor Leaf",
|
||||
},
|
||||
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh4/110.ts
Normal file
94
cards/swsh/swsh4/110.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-110",
|
||||
|
||||
localId: 110,
|
||||
|
||||
name: {
|
||||
en: "Trubbish",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Kyoko Umemoto",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Lucky Find",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for an Item card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sludge Toss",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/111.ts
Normal file
101
cards/swsh/swsh4/111.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-111",
|
||||
|
||||
localId: 111,
|
||||
|
||||
name: {
|
||||
en: "Garbodor",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Hasuno",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Trubbish",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Trash Cyclone",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 damage for each Pokémon Tool card in your discard pile. Then, shuffle those cards into your deck.",
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Poison Spray",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/112.ts
Normal file
101
cards/swsh/swsh4/112.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-112",
|
||||
|
||||
localId: 112,
|
||||
|
||||
name: {
|
||||
en: "Galarian Meowth",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Scratch",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Fury Swipes",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip 3 coins. This attack does 20 damage for each heads.",
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
105
cards/swsh/swsh4/113.ts
Normal file
105
cards/swsh/swsh4/113.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-113",
|
||||
|
||||
localId: 113,
|
||||
|
||||
name: {
|
||||
en: "Galarian Perrserker",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Galarian Meowth",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Stealy Claws",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip 3 coins. If any of them are heads, your opponent reveals their hand. Then, for each heads, discard a Trainer card from your opponent’s hand.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Claw Slash",
|
||||
},
|
||||
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
110
cards/swsh/swsh4/114.ts
Normal file
110
cards/swsh/swsh4/114.ts
Normal file
@ -0,0 +1,110 @@
|
||||
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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-114",
|
||||
|
||||
localId: 114,
|
||||
|
||||
name: {
|
||||
en: "Forretress",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Pineco",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Take Down",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Double KO",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Both Active Pokémon are Knocked Out.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
108
cards/swsh/swsh4/115.ts
Normal file
108
cards/swsh/swsh4/115.ts
Normal file
@ -0,0 +1,108 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-115",
|
||||
|
||||
localId: 115,
|
||||
|
||||
name: {
|
||||
en: "Steelix V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Satoshi Shirai",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 250,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Raging Hammer",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Iron Tackle",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 210,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
100
cards/swsh/swsh4/116.ts
Normal file
100
cards/swsh/swsh4/116.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-116",
|
||||
|
||||
localId: 116,
|
||||
|
||||
name: {
|
||||
en: "Beldum",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Aya Kusube",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
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.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
103
cards/swsh/swsh4/117.ts
Normal file
103
cards/swsh/swsh4/117.ts
Normal file
@ -0,0 +1,103 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-117",
|
||||
|
||||
localId: 117,
|
||||
|
||||
name: {
|
||||
en: "Metang",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Kazuma Koda",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Beldum",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Metal Claw",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Magnetic Blast",
|
||||
},
|
||||
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
107
cards/swsh/swsh4/118.ts
Normal file
107
cards/swsh/swsh4/118.ts
Normal file
@ -0,0 +1,107 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-118",
|
||||
|
||||
localId: 118,
|
||||
|
||||
name: {
|
||||
en: "Metagross",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "kawayoo",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Metang",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 170,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Levitation Field",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your Pokémon in play have no Retreat Cost.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Leg Quake",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If the Defending Pokémon is an Evolution Pokémon, it can’t attack during your opponent’s next turn.",
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/119.ts
Normal file
101
cards/swsh/swsh4/119.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-119",
|
||||
|
||||
localId: 119,
|
||||
|
||||
name: {
|
||||
en: "Jirachi",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
|
||||
rarity: Rarity.AMAZING,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Dreamy Revelation",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Once during your turn, if this Pokémon is in the Active Spot, you may look at the top 2 cards of your deck and put 1 of them into your hand. Put the other card back on top of your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.FIGHTING,
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Amazing Star",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 7 basic Energy cards and attach them to your Pokémon in any way you like. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
98
cards/swsh/swsh4/12.ts
Normal file
98
cards/swsh/swsh4/12.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-12",
|
||||
|
||||
localId: 12,
|
||||
|
||||
name: {
|
||||
en: "Shiftry",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Uta",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Nuzleaf",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Shifty Substitution",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "As long as this Pokémon is in the Active Spot, each Supporter card in your opponent’s hand has the effect \"Draw 3 cards.\" (This happens instead of the card’s usual effect.)",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Fan Tornado",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may have your opponent switch their Active Pokémon with 1 of their Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 110,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
106
cards/swsh/swsh4/120.ts
Normal file
106
cards/swsh/swsh4/120.ts
Normal file
@ -0,0 +1,106 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-120",
|
||||
|
||||
localId: 120,
|
||||
|
||||
name: {
|
||||
en: "Lucario",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kodama",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Riolu",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Spike Draw",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Draw a card.",
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Knuckle Impact",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your next turn, this Pokémon can’t attack.",
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh4/121.ts
Normal file
102
cards/swsh/swsh4/121.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-121",
|
||||
|
||||
localId: 121,
|
||||
|
||||
name: {
|
||||
en: "Dialga",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Rewind Time",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Attach up to 2 Metal Energy cards from your discard pile to 1 of your Pokémon.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Flash of Destruction",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard 2 Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh4/122.ts
Normal file
104
cards/swsh/swsh4/122.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-122",
|
||||
|
||||
localId: 122,
|
||||
|
||||
name: {
|
||||
en: "Excadrill",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Drilbur",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Drill Run",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard an Energy from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slashing Claw",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
85
cards/swsh/swsh4/123.ts
Normal file
85
cards/swsh/swsh4/123.ts
Normal file
@ -0,0 +1,85 @@
|
||||
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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-123",
|
||||
|
||||
localId: 123,
|
||||
|
||||
name: {
|
||||
en: "Ferroseed",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Reaction",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
88
cards/swsh/swsh4/124.ts
Normal file
88
cards/swsh/swsh4/124.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-124",
|
||||
|
||||
localId: 124,
|
||||
|
||||
name: {
|
||||
en: "Ferrothorn",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Miki Tanaka",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Ferroseed",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Swift Swing",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 damage for each Metal Energy attached to this Pokémon. Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh4/125.ts
Normal file
102
cards/swsh/swsh4/125.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-125",
|
||||
|
||||
localId: 125,
|
||||
|
||||
name: {
|
||||
en: "Galarian Stunfisk",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Counterattack",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent’s Pokémon (even if this Pokémon is Knocked Out), put 3 damage counters on the Attacking Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Grip and Squeeze",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/126.ts
Normal file
101
cards/swsh/swsh4/126.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-126",
|
||||
|
||||
localId: 126,
|
||||
|
||||
name: {
|
||||
en: "Aegislash V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sonic Edge",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack’s damage isn’t affected by any effects on your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
90
cards/swsh/swsh4/127.ts
Normal file
90
cards/swsh/swsh4/127.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-127",
|
||||
|
||||
localId: 127,
|
||||
|
||||
name: {
|
||||
en: "Aegislash VMAX",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Aegislash V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 320,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Max Hack",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 more damage for each Prize card you have taken.",
|
||||
},
|
||||
|
||||
damage: "160+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/128.ts
Normal file
101
cards/swsh/swsh4/128.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-128",
|
||||
|
||||
localId: 128,
|
||||
|
||||
name: {
|
||||
en: "Magearna",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "AKIRA EGAWA",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Overhaul",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Shuffle your hand into your deck. Then, draw 6 cards.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Windup Cannon",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 20 more damage for each of your opponent’s Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh4/129.ts
Normal file
104
cards/swsh/swsh4/129.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-129",
|
||||
|
||||
localId: 129,
|
||||
|
||||
name: {
|
||||
en: "Duraludon",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kawayoo",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Raging Claws",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Power Blast",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
79
cards/swsh/swsh4/13.ts
Normal file
79
cards/swsh/swsh4/13.ts
Normal file
@ -0,0 +1,79 @@
|
||||
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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-13",
|
||||
|
||||
localId: 13,
|
||||
|
||||
name: {
|
||||
en: "Nincada",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Sekio",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Absorb",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Heal 10 damage from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
88
cards/swsh/swsh4/130.ts
Normal file
88
cards/swsh/swsh4/130.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-130",
|
||||
|
||||
localId: 130,
|
||||
|
||||
name: {
|
||||
en: "Eevee",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Lee HyunJung",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gnaw",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tail Whap",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh4/131.ts
Normal file
95
cards/swsh/swsh4/131.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-131",
|
||||
|
||||
localId: 131,
|
||||
|
||||
name: {
|
||||
en: "Snorlax",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Gormandize",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Once during your turn, if this Pokémon is in the Active Spot, you may draw cards until you have 7 cards in your hand. If you use this Ability, your turn ends.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Body Slam",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh4/132.ts
Normal file
102
cards/swsh/swsh4/132.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-132",
|
||||
|
||||
localId: 132,
|
||||
|
||||
name: {
|
||||
en: "Lugia",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "NC Empire",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gust",
|
||||
},
|
||||
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wind Pressure",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your opponent has 5 or fewer cards in their hand, this attack does nothing.",
|
||||
},
|
||||
|
||||
damage: 250,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
86
cards/swsh/swsh4/133.ts
Normal file
86
cards/swsh/swsh4/133.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-133",
|
||||
|
||||
localId: 133,
|
||||
|
||||
name: {
|
||||
en: "Taillow",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Yuka Morii",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Double Peck",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 20 damage for each heads.",
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh4/134.ts
Normal file
104
cards/swsh/swsh4/134.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-134",
|
||||
|
||||
localId: 134,
|
||||
|
||||
name: {
|
||||
en: "Swellow",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kodama",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Taillow",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 40 more damage.",
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Energy Assist",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Attach up to 2 basic Energy cards from your discard pile to 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
78
cards/swsh/swsh4/135.ts
Normal file
78
cards/swsh/swsh4/135.ts
Normal file
@ -0,0 +1,78 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-135",
|
||||
|
||||
localId: 135,
|
||||
|
||||
name: {
|
||||
en: "Whismur",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Tika Matsuno",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Continuous Tumble",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin until you get tails. This attack does 40 damage for each heads.",
|
||||
},
|
||||
|
||||
damage: "40×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh4/136.ts
Normal file
96
cards/swsh/swsh4/136.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-136",
|
||||
|
||||
localId: 136,
|
||||
|
||||
name: {
|
||||
en: "Loudred",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "miki kudo",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Whismur",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Round",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 20 damage for each of your Pokémon in play that has the Round attack.",
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hyper Voice",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh4/137.ts
Normal file
96
cards/swsh/swsh4/137.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-137",
|
||||
|
||||
localId: 137,
|
||||
|
||||
name: {
|
||||
en: "Exploud",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Loudred",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 160,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Round",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 50 damage for each of your Pokémon in play that has the Round attack.",
|
||||
},
|
||||
|
||||
damage: "50×",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hyper Voice",
|
||||
},
|
||||
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
87
cards/swsh/swsh4/138.ts
Normal file
87
cards/swsh/swsh4/138.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-138",
|
||||
|
||||
localId: 138,
|
||||
|
||||
name: {
|
||||
en: "Rayquaza",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.AMAZING,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.LIGHTNING,
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Amazing Burst",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard all basic Energy from this Pokémon. This attack does 80 damage for each type of basic Energy you discarded in this way.",
|
||||
},
|
||||
|
||||
damage: "80×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
97
cards/swsh/swsh4/139.ts
Normal file
97
cards/swsh/swsh4/139.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-139",
|
||||
|
||||
localId: 139,
|
||||
|
||||
name: {
|
||||
en: "Chatot",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "0313",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Minor Errand-Running",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 basic Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Peck",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh4/14.ts
Normal file
96
cards/swsh/swsh4/14.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-14",
|
||||
|
||||
localId: 14,
|
||||
|
||||
name: {
|
||||
en: "Ninjask",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Nincada",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Cast-Off Shell",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may search your deck for a Shedinja and put it onto your Bench. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Absorb",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
100
cards/swsh/swsh4/140.ts
Normal file
100
cards/swsh/swsh4/140.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-140",
|
||||
|
||||
localId: 140,
|
||||
|
||||
name: {
|
||||
en: "Togekiss V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 200,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "White Wind",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your opponent’s Active Pokémon is an Evolution Pokémon, this attack does 70 more damage.",
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Speed Wing",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
88
cards/swsh/swsh4/141.ts
Normal file
88
cards/swsh/swsh4/141.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-141",
|
||||
|
||||
localId: 141,
|
||||
|
||||
name: {
|
||||
en: "Togekiss VMAX",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Togekiss V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 310,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Max Glide",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
103
cards/swsh/swsh4/142.ts
Normal file
103
cards/swsh/swsh4/142.ts
Normal file
@ -0,0 +1,103 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-142",
|
||||
|
||||
localId: 142,
|
||||
|
||||
name: {
|
||||
en: "Tornadus",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Jet Draft",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard a Special Energy from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Air Slash",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
82
cards/swsh/swsh4/143.ts
Normal file
82
cards/swsh/swsh4/143.ts
Normal file
@ -0,0 +1,82 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-143",
|
||||
|
||||
localId: 143,
|
||||
|
||||
name: {
|
||||
en: "Pikipek",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Yukiko Baba",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Peck",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh4/144.ts
Normal file
102
cards/swsh/swsh4/144.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-144",
|
||||
|
||||
localId: 144,
|
||||
|
||||
name: {
|
||||
en: "Trumbeak",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "tetsuya koizumi",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Pikipek",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Charging Trumpet",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may look at the top 3 cards of your deck and attach any number of basic Energy cards you find there to your Pokémon in any way you like. Shuffle the other cards back into your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Drill Peck",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
107
cards/swsh/swsh4/145.ts
Normal file
107
cards/swsh/swsh4/145.ts
Normal file
@ -0,0 +1,107 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-145",
|
||||
|
||||
localId: 145,
|
||||
|
||||
name: {
|
||||
en: "Toucannon",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Sekio",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Trumbeak",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Energy Cutoff",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard an Energy from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Loop Cannon",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Put 2 Energy attached to this Pokémon into your hand.",
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/146.ts
Normal file
49
cards/swsh/swsh4/146.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-146",
|
||||
|
||||
localId: 146,
|
||||
|
||||
name: {
|
||||
en: "Allister",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "take",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Draw 3 cards. If you drew any cards in this way, discard up to 3 cards from your hand. (You must discard at least 1 card.)",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/147.ts
Normal file
49
cards/swsh/swsh4/147.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-147",
|
||||
|
||||
localId: 147,
|
||||
|
||||
name: {
|
||||
en: "Bea",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "take",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Discard the top 5 cards of your deck, and attach any Energy cards you discarded in this way to your Benched Fighting Pokémon in any way you like.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/148.ts
Normal file
49
cards/swsh/swsh4/148.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-148",
|
||||
|
||||
localId: 148,
|
||||
|
||||
name: {
|
||||
en: "Beauty",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kirisAki",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "If you go first, you may play this card during your first turn.\n\n\n\n \n\n\n\nDraw 2 cards.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/149.ts
Normal file
49
cards/swsh/swsh4/149.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-149",
|
||||
|
||||
localId: 149,
|
||||
|
||||
name: {
|
||||
en: "Cara Liss",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Search your deck for up to 2 Rare Fossil cards and put them onto your Bench. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh4/15.ts
Normal file
95
cards/swsh/swsh4/15.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-15",
|
||||
|
||||
localId: 15,
|
||||
|
||||
name: {
|
||||
en: "Shaymin",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Leech Seed",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Heal 20 damage from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Flower Bearing",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, your opponent shuffles their Active Pokémon and all attached cards and puts them on the bottom of their deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/150.ts
Normal file
49
cards/swsh/swsh4/150.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-150",
|
||||
|
||||
localId: 150,
|
||||
|
||||
name: {
|
||||
en: "Circhester Bath",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "All Basic Pokémon (both yours and your opponent’s) take 20 less damage from attacks from the opponent’s Pokémon (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/151.ts
Normal file
49
cards/swsh/swsh4/151.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-151",
|
||||
|
||||
localId: 151,
|
||||
|
||||
name: {
|
||||
en: "Drone Rotom",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Your opponent reveals their hand. If they do, look at the top card of your opponent’s deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/152.ts
Normal file
49
cards/swsh/swsh4/152.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-152",
|
||||
|
||||
localId: 152,
|
||||
|
||||
name: {
|
||||
en: "Hero’s Medal",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Toyste Beach",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "The Pokémon VMAX this card is attached to gets -100 HP, and if it is Knocked Out by damage from an attack from your opponent’s Pokémon, that player takes 1 fewer Prize card. You can’t attach this card to a Pokémon VMAX that has 100 HP or less remaining.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/153.ts
Normal file
49
cards/swsh/swsh4/153.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-153",
|
||||
|
||||
localId: 153,
|
||||
|
||||
name: {
|
||||
en: "League Staff",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Emi Ando",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Draw 2 cards. If Wyndon Stadium is in play, draw 2 more cards.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/154.ts
Normal file
49
cards/swsh/swsh4/154.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-154",
|
||||
|
||||
localId: 154,
|
||||
|
||||
name: {
|
||||
en: "Leon",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "During this turn, your Pokémon’s attacks do 30 more damage to your opponent’s Active Pokémon (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/155.ts
Normal file
49
cards/swsh/swsh4/155.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-155",
|
||||
|
||||
localId: 155,
|
||||
|
||||
name: {
|
||||
en: "Memory Capsule",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "sadaji",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "The Pokémon this card is attached to can use any attack from its previous Evolutions. (You still need the necessary Energy to use each attack.)",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/156.ts
Normal file
49
cards/swsh/swsh4/156.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-156",
|
||||
|
||||
localId: 156,
|
||||
|
||||
name: {
|
||||
en: "Moomoo Cheese",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Heal 30 damage from up to 2 of your Pokémon that have Energy attached.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/157.ts
Normal file
49
cards/swsh/swsh4/157.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-157",
|
||||
|
||||
localId: 157,
|
||||
|
||||
name: {
|
||||
en: "Nessa",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "take",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Put up to 4 in any combination of Water Pokémon and Water Energy cards from your discard pile into your hand.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/158.ts
Normal file
49
cards/swsh/swsh4/158.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-158",
|
||||
|
||||
localId: 158,
|
||||
|
||||
name: {
|
||||
en: "Opal",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "take",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Flip 2 coins. Search your deck for a number of cards up to the number of heads, put them into your hand, and shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/159.ts
Normal file
49
cards/swsh/swsh4/159.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-159",
|
||||
|
||||
localId: 159,
|
||||
|
||||
name: {
|
||||
en: "Rocky Helmet",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Studio Bora Inc.",
|
||||
|
||||
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 in the Active Spot and is damaged by an attack from your opponent’s Pokémon (even if it is Knocked Out), put 2 damage counters on the Attacking Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
97
cards/swsh/swsh4/16.ts
Normal file
97
cards/swsh/swsh4/16.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-16",
|
||||
|
||||
localId: 16,
|
||||
|
||||
name: {
|
||||
en: "Genesect",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "kawayoo",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Linear Attack",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 50 damage to 1 of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Techno Blast",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your next turn, this Pokémon can’t attack.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/160.ts
Normal file
49
cards/swsh/swsh4/160.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-160",
|
||||
|
||||
localId: 160,
|
||||
|
||||
name: {
|
||||
en: "Telescopic Sight",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Toyste Beach",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "The attacks of the Pokémon this card is attached to do 30 more damage to your opponent’s Benched Pokémon V and Benched Pokémon-GX.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/161.ts
Normal file
49
cards/swsh/swsh4/161.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-161",
|
||||
|
||||
localId: 161,
|
||||
|
||||
name: {
|
||||
en: "Wyndon Stadium",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Whenever either player plays a Pokémon VMAX from their hand to evolve a Pokémon V during their turn, heal 100 damage from that Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
48
cards/swsh/swsh4/162.ts
Normal file
48
cards/swsh/swsh4/162.ts
Normal file
@ -0,0 +1,48 @@
|
||||
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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-162",
|
||||
|
||||
localId: 162,
|
||||
|
||||
name: {
|
||||
en: "Aromatic Grass Energy",
|
||||
},
|
||||
|
||||
|
||||
|
||||
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 Grass Energy.\n\n\n\n\n\n\n\nThe Grass Pokémon this card is attached to recovers from all Special Conditions and can’t be affected by any Special Conditions.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
48
cards/swsh/swsh4/163.ts
Normal file
48
cards/swsh/swsh4/163.ts
Normal file
@ -0,0 +1,48 @@
|
||||
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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-163",
|
||||
|
||||
localId: 163,
|
||||
|
||||
name: {
|
||||
en: "Coating Metal Energy",
|
||||
},
|
||||
|
||||
|
||||
|
||||
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 Metal Energy.\n\n\n\n \n\n\n\nThe Metal Pokémon this card is attached to has no Weakness.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
48
cards/swsh/swsh4/164.ts
Normal file
48
cards/swsh/swsh4/164.ts
Normal file
@ -0,0 +1,48 @@
|
||||
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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-164",
|
||||
|
||||
localId: 164,
|
||||
|
||||
name: {
|
||||
en: "Stone Fighting Energy",
|
||||
},
|
||||
|
||||
|
||||
|
||||
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 Fighting Energy.\n\n\n\n \n\n\n\nThe Fighting Pokémon this card is attached to takes 20 less damage from attacks from your opponent’s Pokémon (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
48
cards/swsh/swsh4/165.ts
Normal file
48
cards/swsh/swsh4/165.ts
Normal file
@ -0,0 +1,48 @@
|
||||
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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-165",
|
||||
|
||||
localId: 165,
|
||||
|
||||
name: {
|
||||
en: "Wash Water Energy",
|
||||
},
|
||||
|
||||
|
||||
|
||||
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 Water Energy.\n\n\n\n \n\n\n\nPrevent all effects of attacks from your opponent’s Pokémon done to the Water Pokémon this card is attached to. (Existing effects are not removed. Damage is not an effect.)",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh4/166.ts
Normal file
94
cards/swsh/swsh4/166.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-166",
|
||||
|
||||
localId: 166,
|
||||
|
||||
name: {
|
||||
en: "Orbeetle V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 180,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Strafe",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Mysterious Wave",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 more damage for each Energy attached to your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh4/167.ts
Normal file
95
cards/swsh/swsh4/167.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-167",
|
||||
|
||||
localId: 167,
|
||||
|
||||
name: {
|
||||
en: "Zarude V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bind Down",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Jungle Rising",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may attach up to 2 basic Energy cards from your hand to your Benched Pokémon in any way you like. If you attached Energy to a Pokémon in this way, heal all damage from that Pokémon.",
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/168.ts
Normal file
101
cards/swsh/swsh4/168.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-168",
|
||||
|
||||
localId: 168,
|
||||
|
||||
name: {
|
||||
en: "Talonflame V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Eske Yoshinob",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Fast Flight",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If you go first, you can use this attack during your first turn. Discard your hand and draw 6 cards.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bright Wing",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard an Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh4/169.ts
Normal file
96
cards/swsh/swsh4/169.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-169",
|
||||
|
||||
localId: 169,
|
||||
|
||||
name: {
|
||||
en: "Galarian Darmanitan V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 220,
|
||||
|
||||
type: [
|
||||
Type.WATER,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Freezing Headbutt",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.WATER,
|
||||
Type.WATER,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Frozen Slice",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 190,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.METAL,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh4/17.ts
Normal file
93
cards/swsh/swsh4/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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-17",
|
||||
|
||||
localId: 17,
|
||||
|
||||
name: {
|
||||
en: "Skiddo",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Saya Tsuruta",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Synthesis",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for a Grass Energy card and attach it to 1 of your Pokémon. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Razor Leaf",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh4/170.ts
Normal file
94
cards/swsh/swsh4/170.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-170",
|
||||
|
||||
localId: 170,
|
||||
|
||||
name: {
|
||||
en: "Pikachu V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Saki Hayashiro",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Charge",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 Lightning Energy cards and attach them to this Pokémon. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Thunderbolt",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard all Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 200,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh4/171.ts
Normal file
96
cards/swsh/swsh4/171.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-171",
|
||||
|
||||
localId: 171,
|
||||
|
||||
name: {
|
||||
en: "Ampharos V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dazzle Blast",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Confused.",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Damaging Spark",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack also does 30 damage to each of your opponent’s Benched Pokémon that has any damage counters on it. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/172.ts
Normal file
101
cards/swsh/swsh4/172.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-172",
|
||||
|
||||
localId: 172,
|
||||
|
||||
name: {
|
||||
en: "Alakazam V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ayaka Yoshida",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Zen Spoon",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Put 3 damage counters on your opponent’s Pokémon in any way you like.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Mind Ruler",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 damage for each card in your opponent’s hand.",
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.DARKNESS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh4/173.ts
Normal file
95
cards/swsh/swsh4/173.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-173",
|
||||
|
||||
localId: 173,
|
||||
|
||||
name: {
|
||||
en: "Coalossal V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 220,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Searing Flame",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Burned.",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Boulder Crush",
|
||||
},
|
||||
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh4/174.ts
Normal file
94
cards/swsh/swsh4/174.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-174",
|
||||
|
||||
localId: 174,
|
||||
|
||||
name: {
|
||||
en: "Galarian Sirfetch’d V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Resolute Spear",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Once during your turn, when this Pokémon moves from your Bench to the Active Spot, you may move any amount of Fighting Energy from your other Pokémon to it.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Meteor Smash",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your next turn, this Pokémon can’t attack.",
|
||||
},
|
||||
|
||||
damage: 200,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.PSYCHIC,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh4/175.ts
Normal file
95
cards/swsh/swsh4/175.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-175",
|
||||
|
||||
localId: 175,
|
||||
|
||||
name: {
|
||||
en: "Drapion V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Eske Yoshinob",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wrack Down",
|
||||
},
|
||||
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hazardous Claws",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard 2 Energy from this Pokémon. Your opponent’s Active Pokémon is now Paralyzed and Poisoned.",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
106
cards/swsh/swsh4/176.ts
Normal file
106
cards/swsh/swsh4/176.ts
Normal file
@ -0,0 +1,106 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-176",
|
||||
|
||||
localId: 176,
|
||||
|
||||
name: {
|
||||
en: "Steelix V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Satoshi Shirai",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 250,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Raging Hammer",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 10 more damage for each damage counter on this Pokémon.",
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Iron Tackle",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 210,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh4/177.ts
Normal file
101
cards/swsh/swsh4/177.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-177",
|
||||
|
||||
localId: 177,
|
||||
|
||||
name: {
|
||||
en: "Aegislash V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slash",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sonic Edge",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack’s damage isn’t affected by any effects on your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
100
cards/swsh/swsh4/178.ts
Normal file
100
cards/swsh/swsh4/178.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-178",
|
||||
|
||||
localId: 178,
|
||||
|
||||
name: {
|
||||
en: "Togekiss V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 200,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "White Wind",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your opponent’s Active Pokémon is an Evolution Pokémon, this attack does 70 more damage.",
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Speed Wing",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/179.ts
Normal file
49
cards/swsh/swsh4/179.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-179",
|
||||
|
||||
localId: 179,
|
||||
|
||||
name: {
|
||||
en: "Allister",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Draw 3 cards. If you drew any cards in this way, discard up to 3 cards from your hand. (You must discard at least 1 card.)",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
98
cards/swsh/swsh4/18.ts
Normal file
98
cards/swsh/swsh4/18.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-18",
|
||||
|
||||
localId: 18,
|
||||
|
||||
name: {
|
||||
en: "Gogoat",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Mina Nakai",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Skiddo",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Razor Leaf",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Take Down",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 160,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/180.ts
Normal file
49
cards/swsh/swsh4/180.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-180",
|
||||
|
||||
localId: 180,
|
||||
|
||||
name: {
|
||||
en: "Bea",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Discard the top 5 cards of your deck, and attach any Energy cards you discarded in this way to your Benched Fighting Pokémon in any way you like.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/181.ts
Normal file
49
cards/swsh/swsh4/181.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-181",
|
||||
|
||||
localId: 181,
|
||||
|
||||
name: {
|
||||
en: "Beauty",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kirisAki",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "If you go first, you may play this card during your first turn.\n\n\n\n \n\n\n\nDraw 2 cards.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/182.ts
Normal file
49
cards/swsh/swsh4/182.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-182",
|
||||
|
||||
localId: 182,
|
||||
|
||||
name: {
|
||||
en: "Leon",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "During this turn, your Pokémon’s attacks do 30 more damage to your opponent’s Active Pokémon (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/183.ts
Normal file
49
cards/swsh/swsh4/183.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-183",
|
||||
|
||||
localId: 183,
|
||||
|
||||
name: {
|
||||
en: "Nessa",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Put up to 4 in any combination of Water Pokémon and Water Energy cards from your discard pile into your hand.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/184.ts
Normal file
49
cards/swsh/swsh4/184.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-184",
|
||||
|
||||
localId: 184,
|
||||
|
||||
name: {
|
||||
en: "Opal",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Naoki Saito",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Flip 2 coins. Search your deck for a number of cards up to the number of heads, put them into your hand, and shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh4/185.ts
Normal file
49
cards/swsh/swsh4/185.ts
Normal file
@ -0,0 +1,49 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-185",
|
||||
|
||||
localId: 185,
|
||||
|
||||
name: {
|
||||
en: "Pokémon Center Lady",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Heal 60 damage from 1 of your Pokémon, and it recovers from all Special Conditions.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh4/19.ts
Normal file
94
cards/swsh/swsh4/19.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-19",
|
||||
|
||||
localId: 19,
|
||||
|
||||
name: {
|
||||
en: "Dhelmise",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hook",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Special Anchor",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon has any Special Energy attached, this attack does 60 more damage.",
|
||||
},
|
||||
|
||||
damage: "60+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh4/2.ts
Normal file
94
cards/swsh/swsh4/2.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-2",
|
||||
|
||||
localId: 2,
|
||||
|
||||
name: {
|
||||
en: "Kakuna",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Weedle",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Shed Skin",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Heal 30 damage from this Pokémon.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bug Bite",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh4/20.ts
Normal file
96
cards/swsh/swsh4/20.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-20",
|
||||
|
||||
localId: 20,
|
||||
|
||||
name: {
|
||||
en: "Orbeetle V",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 180,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Strafe",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Mysterious Wave",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 more damage for each Energy attached to your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
98
cards/swsh/swsh4/21.ts
Normal file
98
cards/swsh/swsh4/21.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/swsh4'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh4-21",
|
||||
|
||||
localId: 21,
|
||||
|
||||
name: {
|
||||
en: "Orbeetle VMAX",
|
||||
},
|
||||
|
||||
tags: [
|
||||
],
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Orbeetle V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 310,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Eerie Beam",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Once during your turn, if this Pokémon is in the Active Spot, you may put 1 damage counter on each of your opponent’s Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "G-Max Wave",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 50 more damage for each Energy attached to your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: "50+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
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