mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-22 10:52:10 +00:00
Compare commits
8 Commits
Author | SHA1 | Date | |
---|---|---|---|
a550cf079c | |||
78366685f8 | |||
|
08971af0bf | ||
|
7111c33403 | ||
|
a08b8d8cca | ||
c3cfb2607a | |||
|
16caf3384e | ||
|
c5ab6d966b |
@ -20,7 +20,7 @@ const card: Card = {
|
||||
cost: ["Grass"],
|
||||
|
||||
name: {
|
||||
en: "Stomp"
|
||||
en: "Tropical Swing"
|
||||
},
|
||||
|
||||
effect: {
|
||||
|
25
data/Pokémon TCG Pocket/Shining Revelry.ts
Normal file
25
data/Pokémon TCG Pocket/Shining Revelry.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../Pokémon TCG Pocket'
|
||||
|
||||
const set: Set = {
|
||||
id: "A2b",
|
||||
|
||||
name: {
|
||||
// de: "Unschlagbare Gene",
|
||||
en: "Shining Revelry",
|
||||
// es: "Genes Formidables",
|
||||
// fr: "Puissance Génétique",
|
||||
// it: "Geni Supremi",
|
||||
// pt: "Dominação Genética"
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 78
|
||||
},
|
||||
|
||||
releaseDate: "2025-03-27"
|
||||
}
|
||||
|
||||
export default set
|
43
data/Pokémon TCG Pocket/Shining Revelry/001.ts
Normal file
43
data/Pokémon TCG Pocket/Shining Revelry/001.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Weedle"
|
||||
},
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "Often found in forests and grasslands. It has a sharp, toxic barb of around two inches on top of its head."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Multiply"
|
||||
},
|
||||
|
||||
cost: ["Grass"],
|
||||
|
||||
effect: {
|
||||
en: "Put 1 random Weedle from your deck onto your Bench."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/002.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/002.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Kakuna"
|
||||
},
|
||||
|
||||
illustrator: "Yuka Morii",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Weedle"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Almost incapable of moving, this Pokémon can only harden its shell to protect itself when it is in danger."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "String Shot"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Grass"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/003.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/003.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Beedrill ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Kakuna"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Crushing Spear"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
effect: {
|
||||
en: "Discard a random Energy from your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/004.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/004.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pinsir"
|
||||
},
|
||||
|
||||
illustrator: "Satoshi Shirai",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "These Pokémon judge one another based on pincers. Thicker, more impressive pincers make for more popularity with the opposite gender."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Guillotine Rush"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Grass", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. This attack does 40 more damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Shining Revelry/005.ts
Normal file
43
data/Pokémon TCG Pocket/Shining Revelry/005.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Sprigatito"
|
||||
},
|
||||
|
||||
illustrator: "mashu",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "Its fluffy fur is similar in composition to plants. This Pokémon frequently washes its face to keep it from drying out."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Cry for Help"
|
||||
},
|
||||
|
||||
cost: ["Grass"],
|
||||
|
||||
effect: {
|
||||
en: "Put 1 random Pokémon from your deck into your hand."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/006.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/006.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Floragato"
|
||||
},
|
||||
|
||||
illustrator: "mashu",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Sprigatito"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Floragato deftly wields the vine hidden beneath its long fur, slamming the hard flower bud against its opponents."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Slash"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Grass", "Grass"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/007.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/007.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Meowscarada"
|
||||
},
|
||||
|
||||
illustrator: "mashu",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Floragato"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon uses the reflective fur lining its cape to camouflage the stem of its flower, creating the illusion that the flower is floating."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fighting Claws"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 70 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/008.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/008.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charmander"
|
||||
},
|
||||
|
||||
illustrator: "Megumi Mizutani",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "It has a preference for hot things. When it rains, steam is said to spout from the tip of its tail."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Combustion"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/009.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/009.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charmeleon"
|
||||
},
|
||||
|
||||
illustrator: "kodama",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Charmander"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It has a barbaric nature. In battle, it whips its fiery tail around and slashes away with sharp claws."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Combustion"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Fire", "Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
51
data/Pokémon TCG Pocket/Shining Revelry/010.ts
Normal file
51
data/Pokémon TCG Pocket/Shining Revelry/010.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charizard ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Charmeleon"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Stoke"
|
||||
},
|
||||
|
||||
cost: ["Fire"],
|
||||
|
||||
effect: {
|
||||
en: "Take 3 Energy from your Energy Zone and attach it to this Pokémon."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Steam Artillery"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Fire", "Fire", "Fire", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/011.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/011.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magmar"
|
||||
},
|
||||
|
||||
illustrator: "Miki Tanaka",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "Magmar dispatches its prey with fire. But it regrets this habit once it realizes that it has burned its intended prey to a charred crisp."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Flare"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Fire"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/012.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/012.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magmortar"
|
||||
},
|
||||
|
||||
illustrator: "Miki Tanaka",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Magmar"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "When Magmortar inhales deeply, the fire burning in its belly intensifies, rising in temperature to over 3,600 degrees Fahrenheit."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Smoke Bomb"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, if the Defending Pokémon tries to use an attack, your opponent flips a coin. If tails, that attack doesn't happen."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/013.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/013.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Paldean Tauros"
|
||||
},
|
||||
|
||||
illustrator: "Minahamu",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "When heated by fire energy, its horns can get hotter than 1,800 degrees Fahrenheit. Those gored by them will suffer both wounds and burns."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Blaze Tackle"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Fire", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 10 damage to itself."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/014.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/014.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tentacool"
|
||||
},
|
||||
|
||||
illustrator: "Shibuzoh.",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "Tentacool is not a particularly strong swimmer. It drifts across the surface of shallow seas as it searches for prey."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rain Splash"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/015.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/015.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tentacruel"
|
||||
},
|
||||
|
||||
illustrator: "match",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tentacool"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "When the red orbs on Tentacruel's head glow brightly, watch out. The Pokémon is about to fire off a burst of ultrasonic waves."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Wave Splash"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/016.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/016.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Buizel"
|
||||
},
|
||||
|
||||
illustrator: "sui",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "It inflates its flotation sac, keeping its face above water in order to watch for prey movement."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Water Gun"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
47
data/Pokémon TCG Pocket/Shining Revelry/017.ts
Normal file
47
data/Pokémon TCG Pocket/Shining Revelry/017.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Floatzel"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Buizel"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "With its flotation sac inflated, it can carry people on its back. It deflates the sac before it dives."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Water Arrow"
|
||||
},
|
||||
|
||||
cost: ["Water"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 30 damage to 1 of your opponent's Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Shining Revelry/018.ts
Normal file
43
data/Pokémon TCG Pocket/Shining Revelry/018.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Wiglett"
|
||||
},
|
||||
|
||||
illustrator: "miki kudo",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon can pick up the scent of a Veluza just over 65 feet away and will hide itself in the sand."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Spring Out"
|
||||
},
|
||||
|
||||
cost: ["Water"],
|
||||
|
||||
effect: {
|
||||
en: "1 of your opponent's Pokémon is chosen at random. Do 30 damage to it."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/019.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/019.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Wugtrio ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Wiglett"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Pop Out Throughout"
|
||||
},
|
||||
|
||||
cost: ["Water", "Water", "Water"],
|
||||
|
||||
effect: {
|
||||
en: "1 of your opponent's Pokémon is chosen at random 3 times. For each time a Pokémon was chosen, do 50 damage to it."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/020.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/020.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dondozo"
|
||||
},
|
||||
|
||||
illustrator: "Tomowaka",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon is a glutton, but it's bad at getting food. It teams up with a Tatsugiri to catch prey."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Ocean Cyclone"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Water", "Water", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 10 damage to each of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
52
data/Pokémon TCG Pocket/Shining Revelry/021.ts
Normal file
52
data/Pokémon TCG Pocket/Shining Revelry/021.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tatsugiri"
|
||||
},
|
||||
|
||||
illustrator: "Tomowaka",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Retreat Directive"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your Active Dondozo has no Retreat Cost."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rain Splash"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/022.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/022.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Thunderbolt"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Lightning", "Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Discard all Energy from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/023.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/023.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Voltorb"
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "It rolls to move. If the ground is uneven, a sudden jolt from hitting a bump can cause it to explode."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Lightning Ball"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/024.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/024.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Electrode"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Voltorb"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "The more energy it charges up, the faster it gets. But this also makes it more likely to explode."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Tumbling Attack"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 30 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/025.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/025.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pachirisu"
|
||||
},
|
||||
|
||||
illustrator: "imoniii",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "It's one of the kinds of Pokémon with electric cheek pouches. It shoots charges from its tail."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Plasma"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Take a Energy from your Energy Zone and attach it to 1 of your Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/026.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/026.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pawmi"
|
||||
},
|
||||
|
||||
illustrator: "Saboteri",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "It has underdeveloped electric sacs on its cheeks. These sacs can produce electricity only if Pawmi rubs them furiously with the pads on its forepaws."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Punch"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/027.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/027.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pawmo"
|
||||
},
|
||||
|
||||
illustrator: "Saboteri",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pawmi"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "When its group is attacked, Pawmo is the first to leap into battle, defeating enemies with a fighting technique that utilizes electric shocks."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Punch"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Lightning", "Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Shining Revelry/028.ts
Normal file
56
data/Pokémon TCG Pocket/Shining Revelry/028.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pawmot"
|
||||
},
|
||||
|
||||
illustrator: "Saboteri",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pawmo"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon normally is slow to react, but once it enters battle, it will strike down its enemies with lightning-fast movements."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Counterattack"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon is in the Active Spot and is damaged by an attack from your opponent's Pokémon, do 20 damage to the Attacking Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Electric Punch"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Lightning", "Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 0
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/029.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/029.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Abra"
|
||||
},
|
||||
|
||||
illustrator: "Mousho",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon uses its psychic powers while it sleeps. The contents of Abra's dreams affect the powers that the Pokémon wields."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psyshot"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/030.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/030.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Kadabra"
|
||||
},
|
||||
|
||||
illustrator: "Mousho",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Abra"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Using its psychic power, Kadabra levitates as it sleeps. It uses its springy tail as a pillow."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psyshot"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/031.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/031.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Alakazam"
|
||||
},
|
||||
|
||||
illustrator: "Mousho",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Kadabra"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It has an incredibly high level of intelligence. Some say that Alakazam remembers everything that ever happens to it, from birth till death."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psychic Suppression"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 20 damage to each of your opponent's Benched Pokémon that has any Energy attached."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/032.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/032.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mr. Mime"
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "The broadness of its hands may be no coincidence—many scientists believe its palms became enlarged specifically for pantomiming."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Juggling"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip 4 coins. This attack does 20 damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/033.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/033.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Drifloon"
|
||||
},
|
||||
|
||||
illustrator: "kodama",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "It is whispered that any child who mistakes Drifloon for a balloon and holds on to it could wind up missing."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Ram"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/034.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/034.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Drifblim"
|
||||
},
|
||||
|
||||
illustrator: "Hajime Kusajima",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Drifloon"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It can generate and release gas within its body. That's how it can control the altitude of its drift."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gust"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 0
|
||||
}
|
||||
|
||||
export default card
|
52
data/Pokémon TCG Pocket/Shining Revelry/035.ts
Normal file
52
data/Pokémon TCG Pocket/Shining Revelry/035.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Giratina ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Yamashita",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Broken-Space Bellow"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may take a Energy from your Energy Zone and attach it to this Pokémon. If you use this Ability, your turn ends."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Chaotic Impact"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Psychic", "Psychic", "Psychic", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 20 damage to itself."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Shining Revelry/036.ts
Normal file
43
data/Pokémon TCG Pocket/Shining Revelry/036.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gimmighoul"
|
||||
},
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon was born inside a treasure chest about 1,500 years ago. It sucks the life-force out of scoundrels who try to steal the treasure."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Chest-ouflage"
|
||||
},
|
||||
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/037.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/037.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Machop"
|
||||
},
|
||||
|
||||
illustrator: "Mina Nakai",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "Its whole body is composed of muscles. Even though it's the size of a human child, it can hurl 100 grown-ups."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Low Kick"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/038.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/038.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Machoke"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Machop"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its muscular body is so powerful, it must wear a power-save belt to be able to regulate its motions."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Pummel"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 30 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/039.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/039.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Machamp"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Machoke"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It quickly swings its four arms to rock its opponents with ceaseless punches and chops from all angles."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Power Press"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has at least 2 extra Energy attached, this attack does 50 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/040.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/040.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hitmonlee"
|
||||
},
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "This amazing Pokémon has an awesome sense of balance. It can kick in succession from any position."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Kick"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/041.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/041.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Hitmonchan"
|
||||
},
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "Its punches slice the air. They are launched at such high speed, even a slight graze could cause a burn."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Magnum Punch"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Fighting", "Fighting", "Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/042.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/042.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Riolu"
|
||||
},
|
||||
|
||||
illustrator: "You Iribi",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "They communicate with one another using their auras. They are able to run all through the night."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Punch"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Fighting", "Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/043.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/043.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lucario ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Riolu"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Aura Sphere"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Fighting", "Fighting", "Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/044.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/044.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Flamigo"
|
||||
},
|
||||
|
||||
illustrator: "REND",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon apparently ties the base of its neck into a knot so that energy stored in its belly does not escape from its beak."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Double Kick"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fighting", "Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 50 damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/045.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/045.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Ekans"
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
en: "By dislocating its jaw, it can swallow prey larger than itself. After a meal, it curls up and rests."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Ram"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Darkness", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/046.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/046.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Arbok"
|
||||
},
|
||||
|
||||
illustrator: "Midori Harada",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ekans"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "After stunning its opponents with the pattern on its stomach, it quickly wraps them up in its body and waits for them to stop moving."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Venomous Fang"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Darkness", "Darkness", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Poisoned."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/047.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/047.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Paldean Wooper"
|
||||
},
|
||||
|
||||
illustrator: "Mori Yuu",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
en: "After losing a territorial struggle, Wooper began living on land. The Pokémon changed over time, developing a poisonous film to protect its body."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Poison Jab"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Darkness"],
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Poisoned."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/048.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/048.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Paldean Clodsire ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Paldean Wooper"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Venoshock"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Darkness", "Darkness"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is Poisoned, this attack does 60 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/049.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/049.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Spiritomb"
|
||||
},
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
en: "Its constant mischief and misdeeds resulted in it being bound to an Odd Keystone by a mysterious spell."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Confuse Ray"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Darkness"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Confused."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/050.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/050.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Shroodle"
|
||||
},
|
||||
|
||||
illustrator: "Krgc",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
en: "Though usually a mellow Pokémon, it will sink its sharp, poison-soaked front teeth into any that anger it, causing paralysis in the object of its ire."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gnaw"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Darkness"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Shining Revelry/051.ts
Normal file
56
data/Pokémon TCG Pocket/Shining Revelry/051.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Grafaiai"
|
||||
},
|
||||
|
||||
illustrator: "Krgc",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Shroodle"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "The color of the poisonous saliva depends on what the Pokémon eats. Grafaiai covers its fingers in its saliva and draws patterns on trees in forests."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Poison Coating"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may flip a coin. If heads, your opponent's Active Pokémon is now Poisoned."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Bite"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Darkness", "Darkness"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/052.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/052.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tinkatink"
|
||||
},
|
||||
|
||||
illustrator: "miki kudo",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
en: "It swings its handmade hammer around to protect itself, but the hammer is often stolen by Pokémon that eat metal."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Corkscrew Punch"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Metal"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/053.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/053.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tinkatuff"
|
||||
},
|
||||
|
||||
illustrator: "miki kudo",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tinkatink"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon will attack groups of Pawniard and Bisharp, gathering metal from them in order to create a large and sturdy hammer."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Tenacious Hammer"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Metal", "Metal"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 30 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/054.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/054.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tinkaton ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Mochizuki",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tinkatuff"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Terrific Thumping"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 80 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/055.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/055.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Varoom"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Metal"],
|
||||
|
||||
description: {
|
||||
en: "It is said that this Pokémon was born when an unknown poison Pokémon entered and inspirited an engine left at a scrap-processing factory."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Headbutt"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Metal"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/056.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/056.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Revavroom"
|
||||
},
|
||||
|
||||
illustrator: "Souichirou Gunjima",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Varoom"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It creates a gas out of poison and minerals from rocks. It then detonates the gas in its cylinders— now numbering eight—to generate energy."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Spinning Drift"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, during your opponent's next turn, prevent all damage from—and effects of—attacks done to this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/057.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/057.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gholdengo"
|
||||
},
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gimmighoul"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Scintillating Surfing"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Metal", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/058.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/058.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rattata"
|
||||
},
|
||||
|
||||
illustrator: "Eri Yamaki",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "Its incisors grow continuously throughout its life. If its incisors get too long, this Pokémon becomes unable to eat, and it starves to death."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Tackle"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/059.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/059.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Raticate"
|
||||
},
|
||||
|
||||
illustrator: "Kyoko Umemoto",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Rattata"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "People say that it fled from its enemies by using its small webbed hind feet to swim from island to island in Alola."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Tackle"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/060.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/060.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Jigglypuff"
|
||||
},
|
||||
|
||||
illustrator: "Kanako Eo",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "It hugely inflates its stomach and sings a mysterious melody. If you hear this melody, you'll become sleepy right away."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rollout"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Shining Revelry/061.ts
Normal file
56
data/Pokémon TCG Pocket/Shining Revelry/061.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Wigglytuff"
|
||||
},
|
||||
|
||||
illustrator: "miki kudo",
|
||||
rarity: "Three Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Jigglypuff"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It has a very fine fur. Take care not to make it angry, or it may inflate steadily and hit with a body slam."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Comforting Song"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may heal 20 damage from your Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gentle Slap"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/062.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/062.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lickitung"
|
||||
},
|
||||
|
||||
illustrator: "Sumiyoshi Kizuki",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "If this Pokémon's sticky saliva gets on you and you don't clean it off, an intense itch will set in. The itch won't go away, either."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rollout"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/063.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/063.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lickilicky"
|
||||
},
|
||||
|
||||
illustrator: "Suwama Chiaki",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Lickitung"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Lickilicky's strange tongue can stretch to many times the length of its body. No one has figured out how Lickilicky's tongue can stretch so far."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rollout"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/064.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/064.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Bidoof"
|
||||
},
|
||||
|
||||
illustrator: "Sekio",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "With nerves of steel, nothing can perturb it. It is more agile and active than it appears."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Headbutt"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/065.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/065.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Bibarel ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
rarity: "Four Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Bidoof"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Carefree Press"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/066.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/066.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Buneary"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "If both of Buneary's ears are rolled up, something is wrong with its body or mind. It's a sure sign the Pokémon is in need of care."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Pound"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/067.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/067.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lopunny"
|
||||
},
|
||||
|
||||
illustrator: "Minahamu",
|
||||
rarity: "One Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Buneary"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Lopunny is constantly monitoring its surroundings. If danger approaches, this Pokémon responds with superdestructive kicks."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Hopping Shot"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/068.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/068.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cyclizar"
|
||||
},
|
||||
|
||||
illustrator: "HAGIYA Kaoru",
|
||||
rarity: "Two Diamond",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "Apparently Cyclizar has been allowing people to ride on its back since ancient times. Depictions of this have been found in 10,000-year-old murals."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Overacceleration"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "During your next turn, this Pokémon's Overacceleration attack does +20 damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Shining Revelry/069.ts
Normal file
22
data/Pokémon TCG Pocket/Shining Revelry/069.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Iono"
|
||||
},
|
||||
|
||||
illustrator: "saino misaki",
|
||||
rarity: "Two Diamond",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Each player shuffles the cards in their hand into their deck, then draws that many cards."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Shining Revelry/070.ts
Normal file
22
data/Pokémon TCG Pocket/Shining Revelry/070.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pokémon Center Lady"
|
||||
},
|
||||
|
||||
illustrator: "Susumu Maeya",
|
||||
rarity: "Two Diamond",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from 1 of your Pokémon, and it recovers from all Special Conditions."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Shining Revelry/071.ts
Normal file
22
data/Pokémon TCG Pocket/Shining Revelry/071.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Red"
|
||||
},
|
||||
|
||||
illustrator: "Teeziro",
|
||||
rarity: "Two Diamond",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "During this turn, attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon ex."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Shining Revelry/072.ts
Normal file
22
data/Pokémon TCG Pocket/Shining Revelry/072.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Team Rocket Grunt"
|
||||
},
|
||||
|
||||
illustrator: "kantaro",
|
||||
rarity: "Two Diamond",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. For each heads, discard a random Energy from your opponent's Active Pokémon."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/073.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/073.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Meowscarada"
|
||||
},
|
||||
|
||||
illustrator: "danciao",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Floragato"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon uses the reflective fur lining its cape to camouflage the stem of its flower, creating the illusion that the flower is floating."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fighting Claws"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Pokémon ex, this attack does 70 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/074.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/074.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Buizel"
|
||||
},
|
||||
|
||||
illustrator: "Shimaris Yukichi",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "It inflates its flotation sac, keeping its face above water in order to watch for prey movement."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Water Gun"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
52
data/Pokémon TCG Pocket/Shining Revelry/075.ts
Normal file
52
data/Pokémon TCG Pocket/Shining Revelry/075.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tatsugiri"
|
||||
},
|
||||
|
||||
illustrator: "cochi8i",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "This is a small dragon Pokémon. It lives inside the mouth of Dondozo to protect itself from enemies on the outside."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Retreat Directive"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your Active Dondozo has no Retreat Cost."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rain Splash"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Shining Revelry/076.ts
Normal file
56
data/Pokémon TCG Pocket/Shining Revelry/076.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Grafaiai"
|
||||
},
|
||||
|
||||
illustrator: "Teeziro",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Shroodle"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "The color of the poisonous saliva depends on what the Pokémon eats. Grafaiai covers its fingers in its saliva and draws patterns on trees in forests."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Poison Coating"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may flip a coin. If heads, your opponent's Active Pokémon is now Poisoned."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Bite"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Darkness", "Darkness"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/077.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/077.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gholdengo"
|
||||
},
|
||||
|
||||
illustrator: "Jerky",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Gimmighoul"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its body seems to be made up of 1,000 coins. This Pokémon gets along well with others and is quick to make friends with anybody."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Scintillating Surfing"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Metal", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin for each Energy attached to this Pokémon. This attack does 50 damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Shining Revelry/078.ts
Normal file
56
data/Pokémon TCG Pocket/Shining Revelry/078.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Wigglytuff"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
rarity: "One Star",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Jigglypuff"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It has a very fine fur. Take care not to make it angry, or it may inflate steadily and hit with a body slam."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Comforting Song"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may heal 20 damage from your Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gentle Slap"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/079.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/079.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Beedrill ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Kakuna"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Crushing Spear"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
effect: {
|
||||
en: "Discard a random Energy from your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
51
data/Pokémon TCG Pocket/Shining Revelry/080.ts
Normal file
51
data/Pokémon TCG Pocket/Shining Revelry/080.ts
Normal file
@ -0,0 +1,51 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Charizard ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Charmeleon"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Stoke"
|
||||
},
|
||||
|
||||
cost: ["Fire"],
|
||||
|
||||
effect: {
|
||||
en: "Take 3 Energy from your Energy Zone and attach it to this Pokémon."
|
||||
}
|
||||
}, {
|
||||
name: {
|
||||
en: "Steam Artillery"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Fire", "Fire", "Fire", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Shining Revelry/081.ts
Normal file
44
data/Pokémon TCG Pocket/Shining Revelry/081.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Wugtrio ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Tsuji",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Wiglett"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Pop Out Throughout"
|
||||
},
|
||||
|
||||
cost: ["Water", "Water", "Water"],
|
||||
|
||||
effect: {
|
||||
en: "1 of your opponent's Pokémon is chosen at random 3 times. For each time a Pokémon was chosen, do 50 damage to it."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/082.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/082.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Thunderbolt"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Lightning", "Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Discard all Energy from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
52
data/Pokémon TCG Pocket/Shining Revelry/083.ts
Normal file
52
data/Pokémon TCG Pocket/Shining Revelry/083.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Giratina ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Yamashita",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Broken-Space Bellow"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may take a Energy from your Energy Zone and attach it to this Pokémon. If you use this Ability, your turn ends."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Chaotic Impact"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Psychic", "Psychic", "Psychic", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 20 damage to itself."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/084.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/084.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lucario ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Riolu"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Aura Sphere"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Fighting", "Fighting", "Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 30 damage to 1 of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/085.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/085.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Paldean Clodsire ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Paldean Wooper"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Venoshock"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Darkness", "Darkness"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is Poisoned, this attack does 60 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/086.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/086.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tinkaton ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA Igarashi",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tinkatuff"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Terrific Thumping"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 80 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/087.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/087.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Bibarel ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Bidoof"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Carefree Press"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Shining Revelry/088.ts
Normal file
22
data/Pokémon TCG Pocket/Shining Revelry/088.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Iono"
|
||||
},
|
||||
|
||||
illustrator: "saino misaki",
|
||||
rarity: "Two Star",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Each player shuffles the cards in their hand into their deck, then draws that many cards."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Shining Revelry/089.ts
Normal file
22
data/Pokémon TCG Pocket/Shining Revelry/089.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pokémon Center Lady"
|
||||
},
|
||||
|
||||
illustrator: "Susumu Maeya",
|
||||
rarity: "Two Star",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from 1 of your Pokémon, and it recovers from all Special Conditions."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Shining Revelry/090.ts
Normal file
22
data/Pokémon TCG Pocket/Shining Revelry/090.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Red"
|
||||
},
|
||||
|
||||
illustrator: "Teeziro",
|
||||
rarity: "Two Star",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "During this turn, attacks used by your Pokémon do +20 damage to your opponent's Active Pokémon ex."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Shining Revelry/091.ts
Normal file
22
data/Pokémon TCG Pocket/Shining Revelry/091.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Team Rocket Grunt"
|
||||
},
|
||||
|
||||
illustrator: "kantaro",
|
||||
rarity: "Two Star",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. For each heads, discard a random Energy from your opponent's Active Pokémon."
|
||||
},
|
||||
|
||||
trainerType: "Supporter"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Shining Revelry/092.ts
Normal file
40
data/Pokémon TCG Pocket/Shining Revelry/092.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu ex"
|
||||
},
|
||||
|
||||
illustrator: "You Iribi",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Thunderbolt"
|
||||
},
|
||||
|
||||
damage: 150,
|
||||
cost: ["Lightning", "Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Discard all Energy from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/093.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/093.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Paldean Clodsire ex"
|
||||
},
|
||||
|
||||
illustrator: "REND",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Paldean Wooper"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Venoshock"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Darkness", "Darkness"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is Poisoned, this attack does 60 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/094.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/094.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tinkaton ex"
|
||||
},
|
||||
|
||||
illustrator: "kurumitsu",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Metal"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tinkatuff"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Terrific Thumping"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Metal", "Metal", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 80 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Shining Revelry/095.ts
Normal file
45
data/Pokémon TCG Pocket/Shining Revelry/095.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Bibarel ex"
|
||||
},
|
||||
|
||||
illustrator: "USGMEN",
|
||||
rarity: "Two Star",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Bidoof"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Carefree Press"
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
cost: ["Colorless", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Heal 30 damage from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
}
|
||||
|
||||
export default card
|
52
data/Pokémon TCG Pocket/Shining Revelry/096.ts
Normal file
52
data/Pokémon TCG Pocket/Shining Revelry/096.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Giratina ex"
|
||||
},
|
||||
|
||||
illustrator: "Shinji Kanda",
|
||||
rarity: "Three Star",
|
||||
category: "Pokemon",
|
||||
hp: 150,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Broken-Space Bellow"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, you may take a Energy from your Energy Zone and attach it to this Pokémon. If you use this Ability, your turn ends."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Chaotic Impact"
|
||||
},
|
||||
|
||||
damage: 130,
|
||||
cost: ["Psychic", "Psychic", "Psychic", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This Pokémon also does 20 damage to itself."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Shining Revelry/097.ts
Normal file
43
data/Pokémon TCG Pocket/Shining Revelry/097.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Weedle"
|
||||
},
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "Often found in forests and grasslands. It has a sharp, toxic barb of around two inches on top of its head."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Multiply"
|
||||
},
|
||||
|
||||
cost: ["Grass"],
|
||||
|
||||
effect: {
|
||||
en: "Put 1 random Weedle from your deck onto your Bench."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Shiny"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Shining Revelry/098.ts
Normal file
48
data/Pokémon TCG Pocket/Shining Revelry/098.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Shining Revelry"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Kakuna"
|
||||
},
|
||||
|
||||
illustrator: "Sanosuke Sakuma",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Weedle"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Almost incapable of moving, this Pokémon can only harden its shell to protect itself when it is in danger."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "String Shot"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Grass"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Shiny"
|
||||
}
|
||||
|
||||
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