mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 11:22:10 +00:00
feat: Add Mythical Island set (#624)
* feat: Add A1a Signed-off-by: Avior <git@avior.me> * fix: test failing Signed-off-by: Avior <git@avior.me> --------- Signed-off-by: Avior <git@avior.me>
This commit is contained in:
parent
87d9b16fb8
commit
62f6671b63
@ -21,5 +21,5 @@ params:query {
|
||||
|
||||
assert {
|
||||
res.status: eq 200
|
||||
res.body: length 14
|
||||
res.body: gte 14
|
||||
}
|
||||
|
25
data/Pokémon TCG Pocket/Mythical Island.ts
Normal file
25
data/Pokémon TCG Pocket/Mythical Island.ts
Normal file
@ -0,0 +1,25 @@
|
||||
import { Set } from '../../interfaces'
|
||||
import serie from '../Pokémon TCG Pocket'
|
||||
|
||||
const set: Set = {
|
||||
id: "A1a",
|
||||
|
||||
name: {
|
||||
// de: "Unschlagbare Gene",
|
||||
en: "Mythical Island",
|
||||
// es: "Genes Formidables",
|
||||
// fr: "Puissance Génétique",
|
||||
// it: "Geni Supremi",
|
||||
// pt: "Dominação Genética"
|
||||
},
|
||||
|
||||
serie: serie,
|
||||
|
||||
cardCount: {
|
||||
official: 68
|
||||
},
|
||||
|
||||
releaseDate: "2024-12-17"
|
||||
}
|
||||
|
||||
export default set
|
43
data/Pokémon TCG Pocket/Mythical Island/001.ts
Normal file
43
data/Pokémon TCG Pocket/Mythical Island/001.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Exeggcute"
|
||||
},
|
||||
|
||||
illustrator: "Yuka Morii",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "Though it may look like it's just a bunch of eggs,<br />it's a proper Pokémon. Exeggcute communicates<br />with others of its kind via telepathy, apparently."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Growth Spurt"
|
||||
},
|
||||
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Take a <span class=\"energy-text energy-text--type-grass\"></span> Energy from your Energy Zone and attach it to this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/002.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/002.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Exeggutor"
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Exeggcute"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Each of Exeggutor's three heads is thinking<br />different thoughts. The three don't seem to be<br />very interested in one another."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psychic"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Grass", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/003.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/003.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Celebi ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Powerful Bloom"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Grass", "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: 1,
|
||||
rarity: "Four Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/004.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/004.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Snivy"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "Being exposed to sunlight makes its movements<br />swifter. It uses vines more adeptly than its hands."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Vine Whip"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Grass", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/005.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/005.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Servine"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Snivy"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It moves along the ground as if sliding. Its swift<br />movements befuddle its foes, and it then attacks<br />with a vine whip."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Vine Whip"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Grass", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Mythical Island/006.ts
Normal file
56
data/Pokémon TCG Pocket/Mythical Island/006.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Serperior"
|
||||
},
|
||||
|
||||
illustrator: "Yoshioka",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Servine"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It only gives its all against strong opponents who<br />are not fazed by the glare from Serperior's<br />noble eyes."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Jungle Totem"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Each <span class=\"energy-text energy-text--type-grass\"></span> Energy attached to your <span class=\"energy-text energy-text--type-grass\"></span> Pokémon provides 2 <span class=\"energy-text energy-text--type-grass\"></span> Energy. This effect doesn't stack."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Solar Beam"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Grass", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Three Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/007.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/007.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Morelull"
|
||||
},
|
||||
|
||||
illustrator: "Saya Tsuruta",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "Pokémon living in the forest eat the<br />delicious caps on Morelull's head.<br />The caps regrow overnight."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Ram"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Grass"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/008.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/008.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Shiinotic"
|
||||
},
|
||||
|
||||
illustrator: "Mizue",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Morelull"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its flickering spores lure in prey and put them to<br />sleep. Once this Pokémon has its prey snoozing,<br />it drains their vitality with its fingertips."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Flickering Spores"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Grass", "Grass"],
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/009.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/009.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dhelmise"
|
||||
},
|
||||
|
||||
illustrator: "Hasuno",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Grass"],
|
||||
|
||||
description: {
|
||||
en: "After a piece of seaweed merged with debris<br />from a sunken ship, it was reborn as this<br />ghost Pokémon."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Energy Whip"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Grass"],
|
||||
|
||||
effect: {
|
||||
en: "If this Pokémon has at least 3 extra <span class=\"energy-text energy-text--type-grass\"></span> Energy attached, this attack does 70 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/010.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/010.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Ponyta"
|
||||
},
|
||||
|
||||
illustrator: "Tomokazu Komiya",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "It can't run properly when it's newly born.<br />As it races around with others of its kind,<br />its legs grow stronger."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Stomp"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Fire"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 30 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/011.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/011.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Rapidash"
|
||||
},
|
||||
|
||||
illustrator: "AKIRA EGAWA",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ponyta"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon can be seen galloping through<br />fields at speeds of up to 150 mph, its fiery mane<br />fluttering in the wind."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rising Lunge"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Fire", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 60 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/012.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/012.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magmar"
|
||||
},
|
||||
|
||||
illustrator: "sui",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "Magmar dispatches its prey with fire. But it<br />regrets this habit once it realizes that it has<br />burned its intended prey to a charred crisp."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fire Blast"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Fire", "Fire"],
|
||||
|
||||
effect: {
|
||||
en: "Discard 2 <span class=\"energy-text energy-text--type-fire\"></span> Energy from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/013.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/013.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Larvesta"
|
||||
},
|
||||
|
||||
illustrator: "kawayoo",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon was called the Larva That Stole<br />the Sun. The fire Larvesta spouts from its horns<br />can cut right through a sheet of iron."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Combustion"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fire", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
47
data/Pokémon TCG Pocket/Mythical Island/014.ts
Normal file
47
data/Pokémon TCG Pocket/Mythical Island/014.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Volcarona"
|
||||
},
|
||||
|
||||
illustrator: "DOM",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Larvesta"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its burning body causes it to be unpopular in hot<br />parts of the world, but in cold ones, Volcarona is<br />revered as an embodiment of the sun."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Volcanic Ash"
|
||||
},
|
||||
|
||||
cost: ["Fire", "Fire", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Discard 2 <span class=\"energy-text energy-text--type-fire\"></span> Energy from this Pokémon. This attack does 80 damage to 1 of your opponent's Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Three Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/015.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/015.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Salandit"
|
||||
},
|
||||
|
||||
illustrator: "Naoki Saito",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "It taunts its prey and lures them into narrow,<br />rocky areas where it then sprays them with toxic<br />gas to make them dizzy and take them down."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Venoshock"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is Poisoned, this attack does 40 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/016.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/016.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Salazzle"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fire"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Salandit"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Salazzle makes its opponents light-headed with<br />poisonous gas, then captivates them with alluring<br />movements to turn them into loyal servants."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Poison Claws"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fire"],
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Poisoned."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Mythical Island/017.ts
Normal file
43
data/Pokémon TCG Pocket/Mythical Island/017.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Magikarp"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
category: "Pokemon",
|
||||
hp: 30,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "An underpowered, pathetic Pokémon. It may<br />jump high on rare occasions but never more<br />than seven feet."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Leap Out"
|
||||
},
|
||||
|
||||
cost: ["Water"],
|
||||
|
||||
effect: {
|
||||
en: "Switch this Pokémon with 1 of your Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Mythical Island/018.ts
Normal file
45
data/Pokémon TCG Pocket/Mythical Island/018.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gyarados ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Magikarp"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rampaging Whirlpool"
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
cost: ["Water", "Water", "Water", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Discard a random Energy from among the Energy attached to all Pokémon (both yours and your opponent's)."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Four Diamond"
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Mythical Island/019.ts
Normal file
56
data/Pokémon TCG Pocket/Mythical Island/019.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Vaporeon"
|
||||
},
|
||||
|
||||
illustrator: "LINNE",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It lives close to water. Its long tail is ridged with<br />a fin, which is often mistaken for a mermaid's."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Wash Out"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "As often as you like during your turn, you may move a <span class=\"energy-text energy-text--type-water\"></span> Energy from 1 of your Benched <span class=\"energy-text energy-text--type-water\"></span> Pokémon to your Active <span class=\"energy-text energy-text--type-water\"></span> Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Wave Splash"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Water", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Three Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/020.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/020.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Finneon"
|
||||
},
|
||||
|
||||
illustrator: "sui",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "The line running down its side can store sunlight.<br />It shines vividly at night."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Water Gun"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Water"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
47
data/Pokémon TCG Pocket/Mythical Island/021.ts
Normal file
47
data/Pokémon TCG Pocket/Mythical Island/021.ts
Normal file
@ -0,0 +1,47 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Lumineon"
|
||||
},
|
||||
|
||||
illustrator: "Sekio",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Finneon"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "With its shining light, it lures its prey close.<br />However, the light also happens to attract<br />ferocious fish Pokémon—its natural predators."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Aqua Liner"
|
||||
},
|
||||
|
||||
cost: ["Water", "Water"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 50 damage to 1 of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 0,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/022.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/022.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Chewtle"
|
||||
},
|
||||
|
||||
illustrator: "Taiga Kayama",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "Its large front tooth is still growing in. When the<br />tooth itches, this Pokémon will bite another<br />Chewtle's horn, and the two Pokémon will tussle."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Bite"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/023.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/023.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Drednaw"
|
||||
},
|
||||
|
||||
illustrator: "nisimono",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Chewtle"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its massive, jagged teeth can crush a<br />boulder in a single bite. This Pokémon<br />has an extremely vicious disposition."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Crunch"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Water", "Water", "Water"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, discard a random Energy from your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/024.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/024.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Cramorant"
|
||||
},
|
||||
|
||||
illustrator: "Jerky",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Water"],
|
||||
|
||||
description: {
|
||||
en: "It's so strong that it can knock out some<br />opponents in a single hit, but it also may<br />forget what it's battling midfight."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Dive"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Water", "Water", "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: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/025.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/025.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pikachu"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "When it is angered, it immediately discharges the<br />energy stored in the pouches in its cheeks."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Circle Circuit"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 10 damage for each of your Benched <span class=\"energy-text energy-text--type-lightning\"></span> Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/026.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/026.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Raichu"
|
||||
},
|
||||
|
||||
illustrator: "hncl",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pikachu"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Its tail discharges electricity into the ground,<br />protecting it from getting shocked."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Gigashock"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Lightning", "Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "This attack also does 20 damage to each of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Three Diamond"
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Mythical Island/027.ts
Normal file
43
data/Pokémon TCG Pocket/Mythical Island/027.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Electabuzz"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "Many power plants keep Ground-type Pokémon<br />around as a defense against Electabuzz that<br />come seeking electricity."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Thunder Spear"
|
||||
},
|
||||
|
||||
cost: ["Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 40 damage to 1 of your opponent's Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/028.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/028.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Joltik"
|
||||
},
|
||||
|
||||
illustrator: "MINAMINAMI Take",
|
||||
category: "Pokemon",
|
||||
hp: 40,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "Joltik can be found clinging to other Pokémon.<br />It's soaking up static electricity because it can't<br />produce a charge on its own."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Bug Bite"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Lightning"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/029.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/029.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Galvantula"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Lightning"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Joltik"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It launches electrified fur from its abdomen as its<br />means of attack. Opponents hit by the fur could<br />be in for three full days and nights of paralysis."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Electroweb"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Lightning", "Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, the Defending Pokémon can't retreat."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/030.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/030.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dedenne"
|
||||
},
|
||||
|
||||
illustrator: "Taiga Kayama",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "It's small and its electricity-generating organ is<br />not fully developed, so it uses its tail to absorb<br />electricity from people's homes and charge itself."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Thunder Shock"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/031.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/031.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mew"
|
||||
},
|
||||
|
||||
illustrator: "Saya Tsuruta",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "Because it can use all kinds of moves, many<br />scientists believe Mew to be the ancestor<br />of Pokémon."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psy Report"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"],
|
||||
|
||||
effect: {
|
||||
en: "Your opponent reveals their hand."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Three Diamond"
|
||||
}
|
||||
|
||||
export default card
|
46
data/Pokémon TCG Pocket/Mythical Island/032.ts
Normal file
46
data/Pokémon TCG Pocket/Mythical Island/032.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mew ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psyshot"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Genome Hacking"
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Four Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/033.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/033.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Sigilyph"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "Psychic power allows these Pokémon to fly. Some<br />say they were the guardians of an ancient city.<br />Others say they were the guardians' emissaries."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Spike Draw"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Psychic"],
|
||||
|
||||
effect: {
|
||||
en: "Draw a card."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/034.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/034.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Elgyem"
|
||||
},
|
||||
|
||||
illustrator: "Kouki Saitou",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "If this Pokémon stands near a TV, strange scenery<br />will appear on the screen. That scenery is said<br />to be from its home."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Headbutt"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/035.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/035.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Beheeyem"
|
||||
},
|
||||
|
||||
illustrator: "sowsow",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Elgyem"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Whenever a Beheeyem visits a farm,<br />a Dubwool mysteriously disappears."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Mind Jack"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Psychic"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Mythical Island/036.ts
Normal file
43
data/Pokémon TCG Pocket/Mythical Island/036.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Flabébé"
|
||||
},
|
||||
|
||||
illustrator: "Cona Nitanda",
|
||||
category: "Pokemon",
|
||||
hp: 40,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "This Pokémon can draw forth the power hidden<br />within blooming wild flowers. It is particularly<br />fond of red flowers."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Hypnotic Gaze"
|
||||
},
|
||||
|
||||
cost: ["Psychic"],
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Asleep."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/037.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/037.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Floette"
|
||||
},
|
||||
|
||||
illustrator: "Cona Nitanda",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Flabébé"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon draws forth what power is left in<br />withered flowers to make them healthy again.<br />It holds a red flower."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Leaf Drain"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Psychic"],
|
||||
|
||||
effect: {
|
||||
en: "Heal 10 damage from this Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/038.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/038.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Florges"
|
||||
},
|
||||
|
||||
illustrator: "Cona Nitanda",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Floette"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon creates an impressive flower<br />garden in its territory. It draws forth the power<br />of the red flowers around its neck."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Bloomshine"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Psychic", "Psychic"],
|
||||
|
||||
effect: {
|
||||
en: "Heal 20 damage from each of your Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/039.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/039.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Swirlix"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Psychic"],
|
||||
|
||||
description: {
|
||||
en: "It eats its own weight in sugar every day.<br />If it doesn't get enough sugar, it becomes<br />incredibly grumpy."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fairy Wind"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/040.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/040.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Slurpuff"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Psychic"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Swirlix"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "By taking in a person's scent, it can sniff out their<br />mental and physical condition. It's hoped that<br />this skill will have many medical applications."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Magical Shot"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Psychic", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Metal",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/041.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/041.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mankey"
|
||||
},
|
||||
|
||||
illustrator: "Akira Komayama",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "It lives in groups in the treetops. If it loses sight of<br />its group, it becomes infuriated by its loneliness."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Focus Fist"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fighting"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/042.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/042.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Primeape"
|
||||
},
|
||||
|
||||
illustrator: "Taiga Kayama",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Mankey"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It becomes wildly furious if it even senses<br />someone looking at it. It chases anyone<br />that meets its glare."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Punch"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/043.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/043.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Geodude"
|
||||
},
|
||||
|
||||
illustrator: "GOSSAN",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "Geodude that have lived a long life have had all<br />their edges smoothed out until they're totally<br />round. They also have a calm, quiet disposition."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Light Punch"
|
||||
},
|
||||
|
||||
damage: 30,
|
||||
cost: ["Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/044.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/044.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Graveler"
|
||||
},
|
||||
|
||||
illustrator: "Ayaka Yoshida",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Geodude"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It climbs up cliffs as it heads toward the peak<br />of a mountain. As soon as it reaches the summit,<br />it rolls back down the way it came."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Lunge Out"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/045.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/045.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Golem"
|
||||
},
|
||||
|
||||
illustrator: "Masakazu Fukuda",
|
||||
category: "Pokemon",
|
||||
hp: 160,
|
||||
types: ["Fighting"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Graveler"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "When Golem grow old, they stop shedding their<br />shells. Those that have lived a long, long time<br />have shells green with moss."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Guard Press"
|
||||
},
|
||||
|
||||
damage: 120,
|
||||
cost: ["Fighting", "Fighting", "Fighting", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, this Pokémon takes −30 damage from attacks."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Three Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/046.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/046.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Aerodactyl ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Primeval Law"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent can't play any Pokémon from their hand to evolve their Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Land Crush"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Four Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/047.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/047.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Marshadow"
|
||||
},
|
||||
|
||||
illustrator: "kantaro",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "It slips into the shadows of others and mimics<br />their powers and movements. As it improves, it<br />becomes stronger than those it's imitating."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Revenge"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Three Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/048.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/048.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Stonjourner"
|
||||
},
|
||||
|
||||
illustrator: "Teeziro",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "The elemental composition of the rocks that<br />form its body were found to match the bedrock<br />of a land far away from this Pokémon's habitat."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Mega Kick"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Fighting", "Fighting", "Fighting"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Mythical Island/049.ts
Normal file
43
data/Pokémon TCG Pocket/Mythical Island/049.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Koffing"
|
||||
},
|
||||
|
||||
illustrator: "Naoyo Kimura",
|
||||
category: "Pokemon",
|
||||
hp: 70,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
en: "Its body is full of poisonous gas. It floats into<br />garbage dumps, seeking out the fumes of raw,<br />rotting trash."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Division"
|
||||
},
|
||||
|
||||
cost: ["Darkness"],
|
||||
|
||||
effect: {
|
||||
en: "Put 1 random <a class=\"localized-string__link\" href=\"/pokemon/koffing/\">Koffing</a> from your deck onto your Bench."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/050.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/050.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Weezing"
|
||||
},
|
||||
|
||||
illustrator: "Mousho",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Koffing"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "If one of the twin Koffing inflates, the other one<br />deflates. It constantly mixes its poisonous gases."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Smokescreen"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Darkness", "Darkness"],
|
||||
|
||||
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: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/051.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/051.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Purrloin"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
en: "It steals things from people just to amuse itself<br />with their frustration. A rivalry exists between<br />this Pokémon and Nickit."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Scratch"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Darkness"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/052.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/052.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Liepard"
|
||||
},
|
||||
|
||||
illustrator: "GIDORA",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Purrloin"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Don't be fooled by its gorgeous fur and elegant<br />figure. This is a moody and vicious Pokémon."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Slash"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Darkness"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Grass",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/053.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/053.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Venipede"
|
||||
},
|
||||
|
||||
illustrator: "Yukiko Baba",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Darkness"],
|
||||
|
||||
description: {
|
||||
en: "Venipede and Sizzlipede are similar species,<br />but when the two meet, a huge fight ensues."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Ram"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Darkness"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/054.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/054.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Whirlipede"
|
||||
},
|
||||
|
||||
illustrator: "Shin Nagasawa",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Venipede"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "This Pokémon spins itself rapidly and charges into<br />its opponents. Its top speed is just over 60 mph."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Poison Sting"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Darkness"],
|
||||
|
||||
effect: {
|
||||
en: "Your opponent's Active Pokémon is now Poisoned."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/055.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/055.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Scolipede"
|
||||
},
|
||||
|
||||
illustrator: "5ban Graphics",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Darkness"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Whirlipede"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Scolipede latches on to its prey with the claws on<br />its neck before slamming them into the ground<br />and jabbing them with its claws' toxic spikes."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Venoshock"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Darkness", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is Poisoned, this attack does 50 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
52
data/Pokémon TCG Pocket/Mythical Island/056.ts
Normal file
52
data/Pokémon TCG Pocket/Mythical Island/056.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Druddigon"
|
||||
},
|
||||
|
||||
illustrator: "Ryota Murayama",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Dragon"],
|
||||
|
||||
description: {
|
||||
en: "Druddigon lives in caves, but it never skips<br />sunbathing—it won't be able to move if its body<br />gets too cold."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Rough Skin"
|
||||
},
|
||||
|
||||
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: "Dragon Claw"
|
||||
},
|
||||
|
||||
damage: 90,
|
||||
cost: ["Fire", "Water", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Colorless",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/057.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/057.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pidgey"
|
||||
},
|
||||
|
||||
illustrator: "Shigenori Negishi",
|
||||
category: "Pokemon",
|
||||
hp: 50,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "A common sight in forests and woods. It flaps<br />its wings at ground level to kick up blinding sand."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Flap"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/058.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/058.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pidgeotto"
|
||||
},
|
||||
|
||||
illustrator: "Taiga Kayama",
|
||||
category: "Pokemon",
|
||||
hp: 90,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pidgey"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "The claws on its feet are well developed.<br />It can carry prey such as an Exeggcute<br />to its nest over 60 miles away."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Wing Attack"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Mythical Island/059.ts
Normal file
45
data/Pokémon TCG Pocket/Mythical Island/059.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pidgeot ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pidgeotto"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Scattering Cyclone"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Four Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/060.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/060.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Tauros"
|
||||
},
|
||||
|
||||
illustrator: "KEIICHIRO ITO",
|
||||
category: "Pokemon",
|
||||
hp: 100,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "When Tauros begins whipping itself with its tails,<br />it's a warning that the Pokémon is about to<br />charge with astounding speed."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Fighting Tackle"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is a Pokémon more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "Three Diamond"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/061.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/061.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Eevee"
|
||||
},
|
||||
|
||||
illustrator: "Hitoshi Ariga",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "Its ability to evolve into many forms allows it to<br />adapt smoothly and perfectly to any environment."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Continuous Steps"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin until you get tails. This attack does 20 damage for each heads."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
43
data/Pokémon TCG Pocket/Mythical Island/062.ts
Normal file
43
data/Pokémon TCG Pocket/Mythical Island/062.ts
Normal file
@ -0,0 +1,43 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Chatot"
|
||||
},
|
||||
|
||||
illustrator: "Masako Tomii",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Colorless"],
|
||||
|
||||
description: {
|
||||
en: "It mimics the cries of other Pokémon to trick them<br />into thinking it's one of them. This way they won't<br />attack it."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Mimic"
|
||||
},
|
||||
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Shuffle your hand into your deck. Draw a card for each card in your opponent's hand."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Diamond"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Mythical Island/064.ts
Normal file
22
data/Pokémon TCG Pocket/Mythical Island/064.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pokémon Flute"
|
||||
},
|
||||
|
||||
illustrator: "Toyste Beach",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Put 1a Basic Pokémon from your opponent's discard pile onto their Bench."
|
||||
},
|
||||
|
||||
trainerType: "Item",
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Mythical Island/065.ts
Normal file
22
data/Pokémon TCG Pocket/Mythical Island/065.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mythical Slab"
|
||||
},
|
||||
|
||||
illustrator: "AYUMI ODASHIMA",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Look at the top card of your deck. If that card is a <span class=\"energy-text energy-text--type-psychic\"></span> Pokémon, put it into your hand. If it is not a <span class=\"energy-text energy-text--type-psychic\"></span> Pokémon, put it on the bottom of your deck."
|
||||
},
|
||||
|
||||
trainerType: "Item",
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Mythical Island/066.ts
Normal file
22
data/Pokémon TCG Pocket/Mythical Island/066.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Budding Expeditioner"
|
||||
},
|
||||
|
||||
illustrator: "Yuu Nishida",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Put your <a class=\"localized-string__link\" href=\"/pokemon/mew-ex/\">Mew ex</a> in the Active Spot into your hand."
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Mythical Island/067.ts
Normal file
22
data/Pokémon TCG Pocket/Mythical Island/067.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Blue"
|
||||
},
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, all of your Pokémon take −10 damage from attacks from your opponent's Pokémon."
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Mythical Island/068.ts
Normal file
22
data/Pokémon TCG Pocket/Mythical Island/068.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Leaf"
|
||||
},
|
||||
|
||||
illustrator: "En Morikura",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "During this turn, the Retreat Cost of your Active Pokémon is 2 less."
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
rarity: "Two Diamond"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/069.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/069.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Exeggutor"
|
||||
},
|
||||
|
||||
illustrator: "Gapao",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Exeggcute"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "Each of Exeggutor's three heads is thinking<br />different thoughts. The three don't seem to be<br />very interested in one another."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psychic"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Grass", "Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each Energy attached to your opponent's Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "One Star"
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Mythical Island/070.ts
Normal file
56
data/Pokémon TCG Pocket/Mythical Island/070.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Serperior"
|
||||
},
|
||||
|
||||
illustrator: "rika",
|
||||
category: "Pokemon",
|
||||
hp: 110,
|
||||
types: ["Grass"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Servine"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It only gives its all against strong opponents who<br />are not fazed by the glare from Serperior's<br />noble eyes."
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Jungle Totem"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Each <span class=\"energy-text energy-text--type-grass\"></span> Energy attached to your <span class=\"energy-text energy-text--type-grass\"></span> Pokémon provides 2 <span class=\"energy-text energy-text--type-grass\"></span> Energy. This effect doesn't stack."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Solar Beam"
|
||||
},
|
||||
|
||||
damage: 70,
|
||||
cost: ["Grass", "Colorless", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fire",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Star"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/071.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/071.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Salandit"
|
||||
},
|
||||
|
||||
illustrator: "Nurikabe",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Fire"],
|
||||
|
||||
description: {
|
||||
en: "It taunts its prey and lures them into narrow,<br />rocky areas where it then sprays them with toxic<br />gas to make them dizzy and take them down."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Venoshock"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "If your opponent's Active Pokémon is Poisoned, this attack does 40 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Water",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Star"
|
||||
}
|
||||
|
||||
export default card
|
56
data/Pokémon TCG Pocket/Mythical Island/072.ts
Normal file
56
data/Pokémon TCG Pocket/Mythical Island/072.ts
Normal file
@ -0,0 +1,56 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Vaporeon"
|
||||
},
|
||||
|
||||
illustrator: "aspara",
|
||||
category: "Pokemon",
|
||||
hp: 120,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Eevee"
|
||||
},
|
||||
|
||||
description: {
|
||||
en: "It lives close to water. Its long tail is ridged with<br />a fin, which is often mistaken for a mermaid's."
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Wash Out"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "As often as you like during your turn, you may move a <span class=\"energy-text energy-text--type-water\"></span> Energy from 1 of your Benched <span class=\"energy-text energy-text--type-water\"></span> Pokémon to your Active <span class=\"energy-text energy-text--type-water\"></span> Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Wave Splash"
|
||||
},
|
||||
|
||||
damage: 60,
|
||||
cost: ["Water", "Colorless", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 2,
|
||||
rarity: "One Star"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/073.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/073.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Dedenne"
|
||||
},
|
||||
|
||||
illustrator: "Yuu Nishida",
|
||||
category: "Pokemon",
|
||||
hp: 60,
|
||||
types: ["Lightning"],
|
||||
|
||||
description: {
|
||||
en: "It's small and its electricity-generating organ is<br />not fully developed, so it uses its tail to absorb<br />electricity from people's homes and charge itself."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Thunder Shock"
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
cost: ["Lightning"],
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Star"
|
||||
}
|
||||
|
||||
export default card
|
44
data/Pokémon TCG Pocket/Mythical Island/074.ts
Normal file
44
data/Pokémon TCG Pocket/Mythical Island/074.ts
Normal file
@ -0,0 +1,44 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Marshadow"
|
||||
},
|
||||
|
||||
illustrator: "OKACHEKE",
|
||||
category: "Pokemon",
|
||||
hp: 80,
|
||||
types: ["Fighting"],
|
||||
|
||||
description: {
|
||||
en: "It slips into the shadows of others and mimics<br />their powers and movements. As it improves, it<br />becomes stronger than those it's imitating."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Revenge"
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
cost: ["Fighting", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "If any of your Pokémon were Knocked Out by damage from an attack during your opponent's last turn, this attack does 60 more damage."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "One Star"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/075.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/075.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Celebi ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Powerful Bloom"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Grass", "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: 1,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Mythical Island/076.ts
Normal file
45
data/Pokémon TCG Pocket/Mythical Island/076.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Gyarados ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 180,
|
||||
types: ["Water"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Magikarp"
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Rampaging Whirlpool"
|
||||
},
|
||||
|
||||
damage: 140,
|
||||
cost: ["Water", "Water", "Water", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Discard a random Energy from among the Energy attached to all Pokémon (both yours and your opponent's)."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 3,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
46
data/Pokémon TCG Pocket/Mythical Island/077.ts
Normal file
46
data/Pokémon TCG Pocket/Mythical Island/077.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mew ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psyshot"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Genome Hacking"
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/078.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/078.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Aerodactyl ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Primeval Law"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent can't play any Pokémon from their hand to evolve their Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Land Crush"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
45
data/Pokémon TCG Pocket/Mythical Island/079.ts
Normal file
45
data/Pokémon TCG Pocket/Mythical Island/079.ts
Normal file
@ -0,0 +1,45 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Pidgeot ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 170,
|
||||
types: ["Colorless"],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Pidgeotto"
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Scattering Cyclone"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "This attack does 20 more damage for each of your opponent's Benched Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Mythical Island/080.ts
Normal file
22
data/Pokémon TCG Pocket/Mythical Island/080.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Budding Expeditioner"
|
||||
},
|
||||
|
||||
illustrator: "Yuu Nishida",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "Put your <a class=\"localized-string__link\" href=\"/pokemon/mew-ex/\">Mew ex</a> in the Active Spot into your hand."
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Mythical Island/081.ts
Normal file
22
data/Pokémon TCG Pocket/Mythical Island/081.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Blue"
|
||||
},
|
||||
|
||||
illustrator: "Ryuta Fuse",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "During your opponent's next turn, all of your Pokémon take −10 damage from attacks from your opponent's Pokémon."
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
22
data/Pokémon TCG Pocket/Mythical Island/082.ts
Normal file
22
data/Pokémon TCG Pocket/Mythical Island/082.ts
Normal file
@ -0,0 +1,22 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Leaf"
|
||||
},
|
||||
|
||||
illustrator: "En Morikura",
|
||||
category: "Trainer",
|
||||
|
||||
effect: {
|
||||
en: "During this turn, the Retreat Cost of your Active Pokémon is 2 less."
|
||||
},
|
||||
|
||||
trainerType: "Supporter",
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
46
data/Pokémon TCG Pocket/Mythical Island/083.ts
Normal file
46
data/Pokémon TCG Pocket/Mythical Island/083.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mew ex"
|
||||
},
|
||||
|
||||
illustrator: "HYOGONOSUKE",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psyshot"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Genome Hacking"
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
48
data/Pokémon TCG Pocket/Mythical Island/084.ts
Normal file
48
data/Pokémon TCG Pocket/Mythical Island/084.ts
Normal file
@ -0,0 +1,48 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Aerodactyl ex"
|
||||
},
|
||||
|
||||
illustrator: "danciao",
|
||||
category: "Pokemon",
|
||||
hp: 140,
|
||||
types: ["Fighting"],
|
||||
stage: "Stage1",
|
||||
suffix: "EX",
|
||||
|
||||
abilities: [{
|
||||
type: "Ability",
|
||||
|
||||
name: {
|
||||
en: "Primeval Law"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Your opponent can't play any Pokémon from their hand to evolve their Active Pokémon."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Land Crush"
|
||||
},
|
||||
|
||||
damage: 80,
|
||||
cost: ["Fighting", "Colorless"]
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Two Star"
|
||||
}
|
||||
|
||||
export default card
|
40
data/Pokémon TCG Pocket/Mythical Island/085.ts
Normal file
40
data/Pokémon TCG Pocket/Mythical Island/085.ts
Normal file
@ -0,0 +1,40 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Celebi ex"
|
||||
},
|
||||
|
||||
illustrator: "kantaro",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Grass"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Powerful Bloom"
|
||||
},
|
||||
|
||||
damage: 50,
|
||||
cost: ["Grass", "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: 1,
|
||||
rarity: "Three Star"
|
||||
}
|
||||
|
||||
export default card
|
46
data/Pokémon TCG Pocket/Mythical Island/086.ts
Normal file
46
data/Pokémon TCG Pocket/Mythical Island/086.ts
Normal file
@ -0,0 +1,46 @@
|
||||
import { Card } from "../../../interfaces"
|
||||
import Set from "../Mythical Island"
|
||||
|
||||
const card: Card = {
|
||||
set: Set,
|
||||
|
||||
name: {
|
||||
en: "Mew ex"
|
||||
},
|
||||
|
||||
illustrator: "PLANETA CG Works",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Psychic"],
|
||||
stage: "Basic",
|
||||
suffix: "EX",
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Psyshot"
|
||||
},
|
||||
|
||||
damage: 20,
|
||||
cost: ["Psychic"]
|
||||
}, {
|
||||
name: {
|
||||
en: "Genome Hacking"
|
||||
},
|
||||
|
||||
cost: ["Colorless", "Colorless", "Colorless"],
|
||||
|
||||
effect: {
|
||||
en: "Choose 1 of your opponent's Active Pokémon's attacks and use it as this attack."
|
||||
}
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: "Darkness",
|
||||
value: "+20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
rarity: "Crown"
|
||||
}
|
||||
|
||||
export default card
|
Loading…
x
Reference in New Issue
Block a user