mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-06 05:19:55 +00:00
Added datas for SWSH3
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
parent
13e1ffbbe4
commit
d36d42bae8
1
.gitignore
vendored
1
.gitignore
vendored
@ -3,3 +3,4 @@ cards/**/*.json
|
||||
*.js
|
||||
|
||||
node_modules/
|
||||
yarn-error.log
|
||||
|
91
cards/swsh/swsh3/1.ts
Normal file
91
cards/swsh/swsh3/1.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-1",
|
||||
|
||||
localId: 1,
|
||||
|
||||
name: {
|
||||
en: "Butterfree V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Saki Hayashiro",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dizzying Poison",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Confused and Poisoned.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Blasting Wind",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
77
cards/swsh/swsh3/10.ts
Normal file
77
cards/swsh/swsh3/10.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-10",
|
||||
|
||||
localId: 10,
|
||||
|
||||
name: {
|
||||
en: "Accelgor",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Shelmet",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Jet Headbutt",
|
||||
},
|
||||
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
91
cards/swsh/swsh3/100.ts
Normal file
91
cards/swsh/swsh3/100.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-100",
|
||||
|
||||
localId: 100,
|
||||
|
||||
name: {
|
||||
en: "Grimer",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ryota Murayama",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Stomp Off",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard the top card of your opponent’s deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sludge Whirlpool",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh3/101.ts
Normal file
95
cards/swsh/swsh3/101.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-101",
|
||||
|
||||
localId: 101,
|
||||
|
||||
name: {
|
||||
en: "Muk",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Eri Yamaki",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Grimer",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Triple Poison",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned. During Pokémon Checkup, put 3 damage counters on that Pokémon instead of 1.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sludge Whirlpool",
|
||||
},
|
||||
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
88
cards/swsh/swsh3/102.ts
Normal file
88
cards/swsh/swsh3/102.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-102",
|
||||
|
||||
localId: 102,
|
||||
|
||||
name: {
|
||||
en: "Spinarak",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Kyoko Umemoto",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hang Down",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sting",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh3/103.ts
Normal file
96
cards/swsh/swsh3/103.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-103",
|
||||
|
||||
localId: 103,
|
||||
|
||||
name: {
|
||||
en: "Ariados",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Spinarak",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Spider Net",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may switch 1 of your opponent’s Benched Evolution Pokémon with their Active Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Poison Sting",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh3/104.ts
Normal file
93
cards/swsh/swsh3/104.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-104",
|
||||
|
||||
localId: 104,
|
||||
|
||||
name: {
|
||||
en: "Crobat V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 180,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Dark Asset",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may draw cards until you have 6 cards in your hand. You can’t use more than 1 Dark Asset Ability each turn.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Venomous Fang",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh3/105.ts
Normal file
94
cards/swsh/swsh3/105.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-105",
|
||||
|
||||
localId: 105,
|
||||
|
||||
name: {
|
||||
en: "Darkrai",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "nagimiso",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Darkness Guard",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon has any Darkness Energy attached, it takes 20 less damage from attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Vortex of Darkness",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 20 more damage for each Darkness Energy attached to this Pokémon.",
|
||||
},
|
||||
|
||||
damage: "60+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
91
cards/swsh/swsh3/106.ts
Normal file
91
cards/swsh/swsh3/106.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-106",
|
||||
|
||||
localId: 106,
|
||||
|
||||
name: {
|
||||
en: "Purrloin",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "sowsow",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dig Claws",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Fake Out",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh3/107.ts
Normal file
94
cards/swsh/swsh3/107.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-107",
|
||||
|
||||
localId: 107,
|
||||
|
||||
name: {
|
||||
en: "Liepard",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hasuno",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Purrloin",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Limber",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon can’t be Paralyzed.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slashing Claw",
|
||||
},
|
||||
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
74
cards/swsh/swsh3/108.ts
Normal file
74
cards/swsh/swsh3/108.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-108",
|
||||
|
||||
localId: 108,
|
||||
|
||||
name: {
|
||||
en: "Deino",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh3/109.ts
Normal file
93
cards/swsh/swsh3/109.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-109",
|
||||
|
||||
localId: 109,
|
||||
|
||||
name: {
|
||||
en: "Zweilous",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "tetsuya koizumi",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Deino",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Corkscrew Punch",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Darkness Fang",
|
||||
},
|
||||
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh3/11.ts
Normal file
93
cards/swsh/swsh3/11.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-11",
|
||||
|
||||
localId: 11,
|
||||
|
||||
name: {
|
||||
en: "Rowlet",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Sky Circus",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If you played Bird Keeper from your hand during this turn, ignore all Energy in this Pokémon’s attack costs.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wind Shard",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 60 damage to 1 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh3/110.ts
Normal file
94
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-110",
|
||||
|
||||
localId: 110,
|
||||
|
||||
name: {
|
||||
en: "Hydreigon",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kawayoo",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Zweilous",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 160,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Dark Squall",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "As often as you like during your turn, you may attach a Darkness Energy card from your hand to 1 of your Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Pitch-Black Fangs",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
77
cards/swsh/swsh3/111.ts
Normal file
77
cards/swsh/swsh3/111.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-111",
|
||||
|
||||
localId: 111,
|
||||
|
||||
name: {
|
||||
en: "Hoopa",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "so-taro",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Assault Gate",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon didn’t move from the Bench to the Active Spot this turn, this attack does nothing. This attack’s damage isn’t affected by Weakness.",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
76
cards/swsh/swsh3/112.ts
Normal file
76
cards/swsh/swsh3/112.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-112",
|
||||
|
||||
localId: 112,
|
||||
|
||||
name: {
|
||||
en: "Nickit",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Misa Tsutsui",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tail Whip",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, during your opponent’s next turn, the Defending Pokémon can’t attack.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh3/113.ts
Normal file
93
cards/swsh/swsh3/113.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-113",
|
||||
|
||||
localId: 113,
|
||||
|
||||
name: {
|
||||
en: "Thievul",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Nickit",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Nasty Plot",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sharp Fang",
|
||||
},
|
||||
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
92
cards/swsh/swsh3/114.ts
Normal file
92
cards/swsh/swsh3/114.ts
Normal file
@ -0,0 +1,92 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-114",
|
||||
|
||||
localId: 114,
|
||||
|
||||
name: {
|
||||
en: "Grimmsnarl V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 220,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Bite",
|
||||
},
|
||||
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Spiky Knuckle",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Put 2 Darkness Energy attached to this Pokémon into your hand.",
|
||||
},
|
||||
|
||||
damage: 200,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
82
cards/swsh/swsh3/115.ts
Normal file
82
cards/swsh/swsh3/115.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-115",
|
||||
|
||||
localId: 115,
|
||||
|
||||
name: {
|
||||
en: "Grimmsnarl VMAX",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Grimmsnarl V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 330,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "G-Max Drill",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 50 more damage for each extra Darkness Energy attached to this Pokémon (in addition to this attack’s cost). You can’t add more than 100 damage in this way.",
|
||||
},
|
||||
|
||||
damage: "170+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh3/116.ts
Normal file
96
cards/swsh/swsh3/116.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-116",
|
||||
|
||||
localId: 116,
|
||||
|
||||
name: {
|
||||
en: "Eternatus V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 220,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Power Accelerator",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may attach a Darkness Energy card from your hand to 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dynamax Cannon",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your opponent’s Active Pokémon is a Pokémon VMAX, this attack does 120 more damage.",
|
||||
},
|
||||
|
||||
damage: "120+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh3/117.ts
Normal file
96
cards/swsh/swsh3/117.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-117",
|
||||
|
||||
localId: 117,
|
||||
|
||||
name: {
|
||||
en: "Eternatus VMAX",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Eternatus V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 340,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Eternal Zone",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If all of your Pokémon in play are Darkness type, you can have up to 8 Pokémon on your Bench, and you can’t put non-Darkness Pokémon into play. (If this Ability stops working, discard Pokémon from your Bench until you have 5.)",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dread End",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 damage for each of your Darkness Pokémon in play.",
|
||||
},
|
||||
|
||||
damage: "30×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
100
cards/swsh/swsh3/118.ts
Normal file
100
cards/swsh/swsh3/118.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-118",
|
||||
|
||||
localId: 118,
|
||||
|
||||
name: {
|
||||
en: "Scizor V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hack Off",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard a Pokémon Tool and a Special Energy from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slashing Claw",
|
||||
},
|
||||
|
||||
|
||||
damage: 140,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh3/119.ts
Normal file
104
cards/swsh/swsh3/119.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-119",
|
||||
|
||||
localId: 119,
|
||||
|
||||
name: {
|
||||
en: "Scizor VMAX",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Scizor V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 320,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hard Scissors",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, this Pokémon takes 30 less damage from attacks (after applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Max Steelspike",
|
||||
},
|
||||
|
||||
|
||||
damage: 190,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
77
cards/swsh/swsh3/12.ts
Normal file
77
cards/swsh/swsh3/12.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-12",
|
||||
|
||||
localId: 12,
|
||||
|
||||
name: {
|
||||
en: "Dartrix",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Rowlet",
|
||||
},
|
||||
|
||||
|
||||
|
||||
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
|
100
cards/swsh/swsh3/120.ts
Normal file
100
cards/swsh/swsh3/120.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-120",
|
||||
|
||||
localId: 120,
|
||||
|
||||
name: {
|
||||
en: "Skarmory",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "NC Empire",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Metal Arms",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon has a Pokémon Tool attached, this attack does 40 more damage.",
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Cutting Wind",
|
||||
},
|
||||
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh3/121.ts
Normal file
96
cards/swsh/swsh3/121.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-121",
|
||||
|
||||
localId: 121,
|
||||
|
||||
name: {
|
||||
en: "Aron",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh3/122.ts
Normal file
104
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-122",
|
||||
|
||||
localId: 122,
|
||||
|
||||
name: {
|
||||
en: "Lairon",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Mizue",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Aron",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Knock Away",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Lunge Out",
|
||||
},
|
||||
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
103
cards/swsh/swsh3/123.ts
Normal file
103
cards/swsh/swsh3/123.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-123",
|
||||
|
||||
localId: 123,
|
||||
|
||||
name: {
|
||||
en: "Aggron",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hasuno",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Lairon",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 160,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Sturdy",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon has full HP and would be Knocked Out by damage from an attack, it is not Knocked Out, and its remaining HP becomes 10.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gigaton Stomp",
|
||||
},
|
||||
|
||||
|
||||
damage: 160,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh3/124.ts
Normal file
102
cards/swsh/swsh3/124.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-124",
|
||||
|
||||
localId: 124,
|
||||
|
||||
name: {
|
||||
en: "Escavalier",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Karrablast",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Fury Cutter",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip 3 coins. If 1 of them is heads, this attack does 20 more damage. If 2 of them are heads, this attack does 70 more damage. If all of them are heads, this attack does 140 more damage.",
|
||||
},
|
||||
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Seashell Attack",
|
||||
},
|
||||
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
84
cards/swsh/swsh3/125.ts
Normal file
84
cards/swsh/swsh3/125.ts
Normal file
@ -0,0 +1,84 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-125",
|
||||
|
||||
localId: 125,
|
||||
|
||||
name: {
|
||||
en: "Klink",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Call for Backup",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for a Metal Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh3/126.ts
Normal file
102
cards/swsh/swsh3/126.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-126",
|
||||
|
||||
localId: 126,
|
||||
|
||||
name: {
|
||||
en: "Klang",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "NC Empire",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Klink",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Call for Backup",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for a Metal Pokémon, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Spinning Attack",
|
||||
},
|
||||
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh3/127.ts
Normal file
104
cards/swsh/swsh3/127.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-127",
|
||||
|
||||
localId: 127,
|
||||
|
||||
name: {
|
||||
en: "Klinklang",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Naoki Saito",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Klang",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Beam",
|
||||
},
|
||||
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Clockwork",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If you don’t have Klink and Klang on your Bench, this attack does nothing.",
|
||||
},
|
||||
|
||||
damage: 200,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh3/128.ts
Normal file
101
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-128",
|
||||
|
||||
localId: 128,
|
||||
|
||||
name: {
|
||||
en: "Galarian Stunfisk V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 200,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Metal Skin",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon gets +20 HP for each Metal Energy attached to it.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Trapping Bite",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, if this Pokémon is damaged by an attack (even if it is Knocked Out), put 12 damage counters on the Attacking Pokémon.",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh3/129.ts
Normal file
96
cards/swsh/swsh3/129.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-129",
|
||||
|
||||
localId: 129,
|
||||
|
||||
name: {
|
||||
en: "Meltan",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Headbutt",
|
||||
},
|
||||
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Beam",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh3/13.ts
Normal file
96
cards/swsh/swsh3/13.ts
Normal file
@ -0,0 +1,96 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-13",
|
||||
|
||||
localId: 13,
|
||||
|
||||
name: {
|
||||
en: "Decidueye",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ryota Murayama",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Dartrix",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Deep Forest Camo",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Prevent all damage done to this Pokémon by attacks from your opponent’s Pokémon V and Pokémon-GX.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Splitting Arrow",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack also does 20 damage to 2 of your opponent’s Benched Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
104
cards/swsh/swsh3/130.ts
Normal file
104
cards/swsh/swsh3/130.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-130",
|
||||
|
||||
localId: 130,
|
||||
|
||||
name: {
|
||||
en: "Melmetal",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "NC Empire",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Meltan",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Energy Link",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Attach an Energy card from your discard pile to this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Heavy Impact",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
84
cards/swsh/swsh3/131.ts
Normal file
84
cards/swsh/swsh3/131.ts
Normal file
@ -0,0 +1,84 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-131",
|
||||
|
||||
localId: 131,
|
||||
|
||||
name: {
|
||||
en: "Cufant",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Strength",
|
||||
},
|
||||
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
106
cards/swsh/swsh3/132.ts
Normal file
106
cards/swsh/swsh3/132.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-132",
|
||||
|
||||
localId: 132,
|
||||
|
||||
name: {
|
||||
en: "Copperajah",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Cufant",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Antibacterial Skin",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon can’t be affected by any Special Conditions.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Vengeful Stomp",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your Benched Pokémon have any damage counters on them, this attack does 120 more damage.",
|
||||
},
|
||||
|
||||
damage: "120+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh3/133.ts
Normal file
93
cards/swsh/swsh3/133.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-133",
|
||||
|
||||
localId: 133,
|
||||
|
||||
name: {
|
||||
en: "Kangaskhan",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kawayoo",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Rally Back",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If any of your Pokémon were Knocked Out by damage from an attack from your opponent’s Pokémon during their last turn, this attack does 90 more damage.",
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hammer In",
|
||||
},
|
||||
|
||||
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
75
cards/swsh/swsh3/134.ts
Normal file
75
cards/swsh/swsh3/134.ts
Normal file
@ -0,0 +1,75 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-134",
|
||||
|
||||
localId: 134,
|
||||
|
||||
name: {
|
||||
en: "Tauros",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Anesaki Dynamic",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Horn Attack",
|
||||
},
|
||||
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
76
cards/swsh/swsh3/135.ts
Normal file
76
cards/swsh/swsh3/135.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-135",
|
||||
|
||||
localId: 135,
|
||||
|
||||
name: {
|
||||
en: "Sentret",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Mina Nakai",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Call for Family",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh3/136.ts
Normal file
95
cards/swsh/swsh3/136.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-136",
|
||||
|
||||
localId: 136,
|
||||
|
||||
name: {
|
||||
en: "Furret",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "tetsuya koizumi",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Sentret",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Feelin’ Fine",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Draw 3 cards.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tail Smash",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
89
cards/swsh/swsh3/137.ts
Normal file
89
cards/swsh/swsh3/137.ts
Normal file
@ -0,0 +1,89 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-137",
|
||||
|
||||
localId: 137,
|
||||
|
||||
name: {
|
||||
en: "Dunsparce",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Kazuma Koda",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Final Dig",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If this Pokémon is Knocked Out by damage from an attack from your opponent’s Pokémon, discard the top 2 cards of your opponent’s deck.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ram",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
90
cards/swsh/swsh3/138.ts
Normal file
90
cards/swsh/swsh3/138.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-138",
|
||||
|
||||
localId: 138,
|
||||
|
||||
name: {
|
||||
en: "Teddiursa",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Yukiko Baba",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Baby-Doll Eyes",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, the Defending Pokémon can’t retreat.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dig Claws",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
98
cards/swsh/swsh3/139.ts
Normal file
98
cards/swsh/swsh3/139.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-139",
|
||||
|
||||
localId: 139,
|
||||
|
||||
name: {
|
||||
en: "Ursaring",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Uta",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Teddiursa",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hammer Arm",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard the top card of your opponent’s deck.",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Claw Slash",
|
||||
},
|
||||
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
90
cards/swsh/swsh3/14.ts
Normal file
90
cards/swsh/swsh3/14.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-14",
|
||||
|
||||
localId: 14,
|
||||
|
||||
name: {
|
||||
en: "Bounsweet",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Yuka Morii",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "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.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Flop",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
100
cards/swsh/swsh3/140.ts
Normal file
100
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-140",
|
||||
|
||||
localId: 140,
|
||||
|
||||
name: {
|
||||
en: "Lugia",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hasuno",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gust",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Energy Loop",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Put an Energy attached to this Pokémon into your hand.",
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
90
cards/swsh/swsh3/141.ts
Normal file
90
cards/swsh/swsh3/141.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-141",
|
||||
|
||||
localId: 141,
|
||||
|
||||
name: {
|
||||
en: "Skitty",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Saya Tsuruta",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Drawup Power",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for an Energy card, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Cat Kick",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
94
cards/swsh/swsh3/142.ts
Normal file
94
cards/swsh/swsh3/142.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-142",
|
||||
|
||||
localId: 142,
|
||||
|
||||
name: {
|
||||
en: "Delcatty",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Tika Matsuno",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Skitty",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 100,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Captivating Tail",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Confused.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Moon Impact",
|
||||
},
|
||||
|
||||
|
||||
damage: 90,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh3/143.ts
Normal file
102
cards/swsh/swsh3/143.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-143",
|
||||
|
||||
localId: 143,
|
||||
|
||||
name: {
|
||||
en: "Salamence V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Saki Hayashiro",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 220,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Swoop Across",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 damage to each of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Heavy Storm",
|
||||
},
|
||||
|
||||
|
||||
damage: 160,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
106
cards/swsh/swsh3/144.ts
Normal file
106
cards/swsh/swsh3/144.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-144",
|
||||
|
||||
localId: 144,
|
||||
|
||||
name: {
|
||||
en: "Salamence VMAX",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Salamence V",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 320,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Sonic Double",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 40 damage to 2 of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Max Wings",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your next turn, this Pokémon can’t use Max Wings.",
|
||||
},
|
||||
|
||||
damage: 240,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
100
cards/swsh/swsh3/145.ts
Normal file
100
cards/swsh/swsh3/145.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-145",
|
||||
|
||||
localId: 145,
|
||||
|
||||
name: {
|
||||
en: "Starly",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Sky Circus",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If you played Bird Keeper from your hand during this turn, ignore all Energy in this Pokémon’s attack costs.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Keen Eye",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Search your deck for up to 2 cards and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh3/146.ts
Normal file
102
cards/swsh/swsh3/146.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-146",
|
||||
|
||||
localId: 146,
|
||||
|
||||
name: {
|
||||
en: "Staravia",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "chibi",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Starly",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Ambush",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 20 more damage.",
|
||||
},
|
||||
|
||||
damage: "20+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Wing Attack",
|
||||
},
|
||||
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
105
cards/swsh/swsh3/147.ts
Normal file
105
cards/swsh/swsh3/147.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-147",
|
||||
|
||||
localId: 147,
|
||||
|
||||
name: {
|
||||
en: "Staraptor",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "AKIRA EGAWA",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Staravia",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hurricane Blender",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Move any amount of Energy from your Pokémon to your other Pokémon in any way you like.",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Brave Bird",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon also does 30 damage to itself.",
|
||||
},
|
||||
|
||||
damage: 170,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
82
cards/swsh/swsh3/148.ts
Normal file
82
cards/swsh/swsh3/148.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-148",
|
||||
|
||||
localId: 148,
|
||||
|
||||
name: {
|
||||
en: "Ducklett",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 50,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Flap",
|
||||
},
|
||||
|
||||
|
||||
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/swsh3/149.ts
Normal file
104
cards/swsh/swsh3/149.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-149",
|
||||
|
||||
localId: 149,
|
||||
|
||||
name: {
|
||||
en: "Swanna",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Taira Akitsu",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Ducklett",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 110,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Sky Circus",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If you played Bird Keeper from your hand during this turn, ignore all Energy in this Pokémon’s attack costs.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Feather Slice",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may discard a card from your hand. If you do, this attack does 70 more damage.",
|
||||
},
|
||||
|
||||
damage: "70+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh3/15.ts
Normal file
93
cards/swsh/swsh3/15.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-15",
|
||||
|
||||
localId: 15,
|
||||
|
||||
name: {
|
||||
en: "Steenee",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "sui",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Bounsweet",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Captivate",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch 1 of your opponent’s Benched Pokémon with their Active Pokémon.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Smack",
|
||||
},
|
||||
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
78
cards/swsh/swsh3/150.ts
Normal file
78
cards/swsh/swsh3/150.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-150",
|
||||
|
||||
localId: 150,
|
||||
|
||||
name: {
|
||||
en: "Bunnelby",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 40,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Mad Party",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 20 damage for each Pokémon in your discard pile that has the Mad Party attack.",
|
||||
},
|
||||
|
||||
damage: "20×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
82
cards/swsh/swsh3/151.ts
Normal file
82
cards/swsh/swsh3/151.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-151",
|
||||
|
||||
localId: 151,
|
||||
|
||||
name: {
|
||||
en: "Fletchling",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Tackle",
|
||||
},
|
||||
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
77
cards/swsh/swsh3/152.ts
Normal file
77
cards/swsh/swsh3/152.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-152",
|
||||
|
||||
localId: 152,
|
||||
|
||||
name: {
|
||||
en: "Skwovet",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Whimsy Tackle",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
97
cards/swsh/swsh3/153.ts
Normal file
97
cards/swsh/swsh3/153.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-153",
|
||||
|
||||
localId: 153,
|
||||
|
||||
name: {
|
||||
en: "Greedent",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Skwovet",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 120,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Scrape Off",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Before doing damage, discard all Pokémon Tools from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Smack and Run",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Put this Pokémon and all attached cards into your hand.",
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
85
cards/swsh/swsh3/154.ts
Normal file
85
cards/swsh/swsh3/154.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-154",
|
||||
|
||||
localId: 154,
|
||||
|
||||
name: {
|
||||
en: "Rookidee",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Pluck",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Before doing damage, discard all Pokémon Tools from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
103
cards/swsh/swsh3/155.ts
Normal file
103
cards/swsh/swsh3/155.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-155",
|
||||
|
||||
localId: 155,
|
||||
|
||||
name: {
|
||||
en: "Corvisquire",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kirisAki",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Rookidee",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Peck",
|
||||
},
|
||||
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Fury Attack",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip 3 coins. This attack does 40 damage for each heads.",
|
||||
},
|
||||
|
||||
damage: "40×",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh3/156.ts
Normal file
102
cards/swsh/swsh3/156.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-156",
|
||||
|
||||
localId: 156,
|
||||
|
||||
name: {
|
||||
en: "Corviknight",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Corvisquire",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 160,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Flying Taxi",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon during your turn, you may put 1 of your Pokémon, except any Corviknight, and all attached cards into your hand.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Blasting Wind",
|
||||
},
|
||||
|
||||
|
||||
damage: 120,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/157.ts
Normal file
49
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-157",
|
||||
|
||||
localId: 157,
|
||||
|
||||
name: {
|
||||
en: "Big Parasol",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Toyste Beach",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "As long as the Pokémon this card is attached to is in the Active Spot, prevent all effects of attacks from your opponent’s Pokémon done to all of your Pokémon. (Existing effects are not removed. Damage is not an effect.)",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/158.ts
Normal file
49
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-158",
|
||||
|
||||
localId: 158,
|
||||
|
||||
name: {
|
||||
en: "Billowing Smoke",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "If the Pokémon this card is attached to is Knocked Out by damage from an attack from your opponent’s Pokémon, that player discards any Prize cards they would take for that Knock Out instead of putting those cards into their hand.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/159.ts
Normal file
49
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-159",
|
||||
|
||||
localId: 159,
|
||||
|
||||
name: {
|
||||
en: "Bird Keeper",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hideki Ishikawa",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Switch your Active Pokémon with 1 of your Benched Pokémon. If you do, draw 3 cards.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh3/16.ts
Normal file
96
cards/swsh/swsh3/16.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-16",
|
||||
|
||||
localId: 16,
|
||||
|
||||
name: {
|
||||
en: "Tsareena",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "so-taro",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Steenee",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 150,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Power Whip",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 20 damage to 1 of your opponent’s Pokémon for each Energy attached to this Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Time Out Kick",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may put an Energy attached to your opponent’s Active Pokémon into their hand.",
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/160.ts
Normal file
49
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-160",
|
||||
|
||||
localId: 160,
|
||||
|
||||
name: {
|
||||
en: "Cape of Toughness",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "inose yukie",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "The Basic Pokémon this card is attached to gets +50 HP, except Pokémon-GX.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/161.ts
Normal file
49
cards/swsh/swsh3/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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-161",
|
||||
|
||||
localId: 161,
|
||||
|
||||
name: {
|
||||
en: "Familiar Bell",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "sadaji",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Search your deck for a Pokémon with the same name as a Pokémon in your discard pile, reveal it, and put it into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/162.ts
Normal file
49
cards/swsh/swsh3/162.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-162",
|
||||
|
||||
localId: 162,
|
||||
|
||||
name: {
|
||||
en: "Glimwood Tangle",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "aky CG Works",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Once during each player’s turn, after that player flips any coins for an attack, they may ignore all results of those coin flips and begin flipping those coins again.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/163.ts
Normal file
49
cards/swsh/swsh3/163.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-163",
|
||||
|
||||
localId: 163,
|
||||
|
||||
name: {
|
||||
en: "Kabu",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "take",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Shuffle your hand into your deck. Then, draw 4 cards. If your Active Pokémon is your only Pokémon in play, draw 8 cards instead.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/164.ts
Normal file
49
cards/swsh/swsh3/164.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-164",
|
||||
|
||||
localId: 164,
|
||||
|
||||
name: {
|
||||
en: "Old PC",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Studio Bora Inc.",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Flip 2 coins. If both are heads, put a card from your discard pile into your hand.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/165.ts
Normal file
49
cards/swsh/swsh3/165.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-165",
|
||||
|
||||
localId: 165,
|
||||
|
||||
name: {
|
||||
en: "Piers",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "take",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Search your deck for an Energy card and a Darkness Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/166.ts
Normal file
49
cards/swsh/swsh3/166.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-166",
|
||||
|
||||
localId: 166,
|
||||
|
||||
name: {
|
||||
en: "Pokémon Breeder’s Nurturing",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kirisAki",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Choose up to 2 of your Pokémon in play. For each of those Pokémon, search your deck for a card that evolves from that Pokémon and put it onto that Pokémon to evolve it. Then, shuffle your deck. You can’t use this card during your first turn or on a Pokémon that was put into play this turn.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/167.ts
Normal file
49
cards/swsh/swsh3/167.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-167",
|
||||
|
||||
localId: 167,
|
||||
|
||||
name: {
|
||||
en: "Rare Fossil",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Play this card as if it were a 70-HP Basic Colorless Pokémon. At any time during your turn, you may discard this card from play.\n\n \n\nThis card can’t be affected by any Special Conditions, and it can’t retreat.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/168.ts
Normal file
49
cards/swsh/swsh3/168.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-168",
|
||||
|
||||
localId: 168,
|
||||
|
||||
name: {
|
||||
en: "Rose",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Yusuke Ohmura",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Attach up to 2 basic Energy cards from your discard pile to 1 of your Pokémon VMAX. If you attached any Energy cards in this way, discard your hand.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/169.ts
Normal file
49
cards/swsh/swsh3/169.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-169",
|
||||
|
||||
localId: 169,
|
||||
|
||||
name: {
|
||||
en: "Rose Tower",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Once during each player’s turn, that player may draw cards until they have 3 cards in their hand.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
77
cards/swsh/swsh3/17.ts
Normal file
77
cards/swsh/swsh3/17.ts
Normal file
@ -0,0 +1,77 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-17",
|
||||
|
||||
localId: 17,
|
||||
|
||||
name: {
|
||||
en: "Wimpod",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "MAHOU",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 70,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Gnaw and Run",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/170.ts
Normal file
49
cards/swsh/swsh3/170.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-170",
|
||||
|
||||
localId: 170,
|
||||
|
||||
name: {
|
||||
en: "Spikemuth",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Whenever a player’s Active Pokémon moves to the Bench during their turn, put 2 damage counters on that Pokémon.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/171.ts
Normal file
49
cards/swsh/swsh3/171.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-171",
|
||||
|
||||
localId: 171,
|
||||
|
||||
name: {
|
||||
en: "Struggle Gloves",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ryo Ueda",
|
||||
|
||||
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 has Weakness to your opponent’s Active Pokémon’s type, its attacks do 30 more damage to your opponent’s Active Pokémon (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/172.ts
Normal file
49
cards/swsh/swsh3/172.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-172",
|
||||
|
||||
localId: 172,
|
||||
|
||||
name: {
|
||||
en: "Turbo Patch",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Toyste Beach",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, attach a basic Energy card from your discard pile to 1 of your Basic Pokémon that isn’t a Pokémon-GX.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/173.ts
Normal file
49
cards/swsh/swsh3/173.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-173",
|
||||
|
||||
localId: 173,
|
||||
|
||||
name: {
|
||||
en: "Yell Horn",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.UNCOMMON,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Both Active Pokémon are now Confused.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
48
cards/swsh/swsh3/174.ts
Normal file
48
cards/swsh/swsh3/174.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-174",
|
||||
|
||||
localId: 174,
|
||||
|
||||
name: {
|
||||
en: "Heat Fire 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 Fire Energy.\n\n \n\nThe Fire Pokémon this card is attached to gets +20 HP.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
48
cards/swsh/swsh3/175.ts
Normal file
48
cards/swsh/swsh3/175.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-175",
|
||||
|
||||
localId: 175,
|
||||
|
||||
name: {
|
||||
en: "Hiding Darkness 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 Darkness Energy.\n\n \n\nThe Darkness Pokémon this card is attached to has no Retreat Cost.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
48
cards/swsh/swsh3/176.ts
Normal file
48
cards/swsh/swsh3/176.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-176",
|
||||
|
||||
localId: 176,
|
||||
|
||||
name: {
|
||||
en: "Powerful Colorless 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 Colorless Energy.\n\n \n\nThe attacks of the Colorless Pokémon this card is attached to do 20 more damage to your opponent’s Active Pokémon (before applying Weakness and Resistance).",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
91
cards/swsh/swsh3/177.ts
Normal file
91
cards/swsh/swsh3/177.ts
Normal file
@ -0,0 +1,91 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-177",
|
||||
|
||||
localId: 177,
|
||||
|
||||
name: {
|
||||
en: "Butterfree V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Saki Hayashiro",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 190,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Dizzying Poison",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Confused and Poisoned.",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Blasting Wind",
|
||||
},
|
||||
|
||||
|
||||
damage: 130,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
95
cards/swsh/swsh3/178.ts
Normal file
95
cards/swsh/swsh3/178.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-178",
|
||||
|
||||
localId: 178,
|
||||
|
||||
name: {
|
||||
en: "Houndoom V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ayaka Yoshida",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Searing Flame",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Burned.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Vengeful Flame",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "If your Benched Fire Pokémon have any damage counters on them, this attack does 100 more damage.",
|
||||
},
|
||||
|
||||
damage: "100+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.WATER,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh3/179.ts
Normal file
93
cards/swsh/swsh3/179.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-179",
|
||||
|
||||
localId: 179,
|
||||
|
||||
name: {
|
||||
en: "Centiskorch V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Radiating Heat",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may discard an Energy from this Pokémon. If you do, discard an Energy from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
Type.FIRE,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Burning Train",
|
||||
},
|
||||
|
||||
|
||||
damage: 180,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.WATER,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
99
cards/swsh/swsh3/18.ts
Normal file
99
cards/swsh/swsh3/18.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-18",
|
||||
|
||||
localId: 18,
|
||||
|
||||
name: {
|
||||
en: "Golisopod",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
evolveFrom: {
|
||||
en: "Wimpod",
|
||||
},
|
||||
|
||||
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.GRASS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hard Times Slash",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 50 more damage for each of your opponent’s Pokémon V and Pokémon-GX in play.",
|
||||
},
|
||||
|
||||
damage: "30+",
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.GRASS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Smash Turn",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon.",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
96
cards/swsh/swsh3/180.ts
Normal file
96
cards/swsh/swsh3/180.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-180",
|
||||
|
||||
localId: 180,
|
||||
|
||||
name: {
|
||||
en: "Vikavolt V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Ayaka Yoshida",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Paralyzing Bolt",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, they can’t play any Item cards from their hand.",
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Super Zap Cannon",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard 2 Energy from this Pokémon.",
|
||||
},
|
||||
|
||||
damage: 190,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 3,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
98
cards/swsh/swsh3/181.ts
Normal file
98
cards/swsh/swsh3/181.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-181",
|
||||
|
||||
localId: 181,
|
||||
|
||||
name: {
|
||||
en: "Rhyperior V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Eske Yoshinob",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 230,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Drill Run",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard an Energy from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Heavy Rock Artillery",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your next turn, this Pokémon can’t use Heavy Rock Artillery.",
|
||||
},
|
||||
|
||||
damage: 210,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
93
cards/swsh/swsh3/182.ts
Normal file
93
cards/swsh/swsh3/182.ts
Normal file
@ -0,0 +1,93 @@
|
||||
import Card from '@tcgdex/sdk/interfaces/Card'
|
||||
import Type from '@tcgdex/sdk/interfaces/Type'
|
||||
import Tag from '@tcgdex/sdk/interfaces/Tag'
|
||||
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
|
||||
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
|
||||
import Category from '@tcgdex/sdk/interfaces/Category'
|
||||
import set from '../../../sets/swsh/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-182",
|
||||
|
||||
localId: 182,
|
||||
|
||||
name: {
|
||||
en: "Crobat V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 180,
|
||||
|
||||
type: [
|
||||
Type.DARKNESS,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Dark Asset",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may draw cards until you have 6 cards in your hand. You can’t use more than 1 Dark Asset Ability each turn.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.DARKNESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Venomous Fang",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Your opponent’s Active Pokémon is now Poisoned.",
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIGHTING,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
100
cards/swsh/swsh3/183.ts
Normal file
100
cards/swsh/swsh3/183.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-183",
|
||||
|
||||
localId: 183,
|
||||
|
||||
name: {
|
||||
en: "Scizor V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Satoshi Shirai",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 210,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Hack Off",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Discard a Pokémon Tool and a Special Energy from your opponent’s Active Pokémon.",
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.METAL,
|
||||
Type.METAL,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Slashing Claw",
|
||||
},
|
||||
|
||||
|
||||
damage: 140,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
101
cards/swsh/swsh3/184.ts
Normal file
101
cards/swsh/swsh3/184.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-184",
|
||||
|
||||
localId: 184,
|
||||
|
||||
name: {
|
||||
en: "Galarian Stunfisk V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 200,
|
||||
|
||||
type: [
|
||||
Type.METAL,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.TALENT,
|
||||
|
||||
name: {
|
||||
en: "Metal Skin",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This Pokémon gets +20 HP for each Metal Energy attached to it.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Trapping Bite",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "During your opponent’s next turn, if this Pokémon is damaged by an attack (even if it is Knocked Out), put 12 damage counters on the Attacking Pokémon.",
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.FIRE,
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "-30",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 4,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
}
|
||||
|
||||
export default card
|
102
cards/swsh/swsh3/185.ts
Normal file
102
cards/swsh/swsh3/185.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-185",
|
||||
|
||||
localId: 185,
|
||||
|
||||
name: {
|
||||
en: "Salamence V",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Saki Hayashiro",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
hp: 220,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Swoop Across",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 damage to each of your opponent’s Pokémon. (Don’t apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Heavy Storm",
|
||||
},
|
||||
|
||||
|
||||
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/swsh3/186.ts
Normal file
49
cards/swsh/swsh3/186.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-186",
|
||||
|
||||
localId: 186,
|
||||
|
||||
name: {
|
||||
en: "Kabu",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Shuffle your hand into your deck. Then, draw 4 cards. If your Active Pokémon is your only Pokémon in play, draw 8 cards instead.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/187.ts
Normal file
49
cards/swsh/swsh3/187.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-187",
|
||||
|
||||
localId: 187,
|
||||
|
||||
name: {
|
||||
en: "Piers",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kirisAki",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Search your deck for an Energy card and a Darkness Pokémon, reveal them, and put them into your hand. Then, shuffle your deck.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
export default card
|
49
cards/swsh/swsh3/188.ts
Normal file
49
cards/swsh/swsh3/188.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/swsh3'
|
||||
|
||||
|
||||
const card: Card = {
|
||||
// Card Global Informations
|
||||
id: "swsh3-188",
|
||||
|
||||
localId: 188,
|
||||
|
||||
name: {
|
||||
en: "Pokémon Breeder’s Nurturing",
|
||||
},
|
||||
|
||||
|
||||
illustrator: "kirisAki",
|
||||
|
||||
rarity: Rarity.ULTRARARE,
|
||||
|
||||
category: Category.TRAINER,
|
||||
|
||||
set,
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
effect: {
|
||||
en: "Choose up to 2 of your Pokémon in play. For each of those Pokémon, search your deck for a card that evolves from that Pokémon and put it onto that Pokémon to evolve it. Then, shuffle your deck. You can’t use this card during your first turn or on a Pokémon that was put into play this turn.",
|
||||
},
|
||||
|
||||
}
|
||||
|
||||
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