diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island.ts"
new file mode 100644
index 000000000..11d472b73
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island.ts"
@@ -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
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/001.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/001.ts"
new file mode 100644
index 000000000..f6b308a14
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/001.ts"
@@ -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,
it's a proper Pokémon. Exeggcute communicates
with others of its kind via telepathy, apparently."
+ },
+
+ stage: "Basic",
+
+ attacks: [{
+ name: {
+ en: "Growth Spurt"
+ },
+
+ cost: ["Colorless"],
+
+ effect: {
+ en: "Take a 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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/002.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/002.ts"
new file mode 100644
index 000000000..06adc2f5f
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/002.ts"
@@ -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
different thoughts. The three don't seem to be
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/003.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/003.ts"
new file mode 100644
index 000000000..0c18aa4f6
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/003.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/004.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/004.ts"
new file mode 100644
index 000000000..967c52e01
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/004.ts"
@@ -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
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/005.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/005.ts"
new file mode 100644
index 000000000..e5726ecc0
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/005.ts"
@@ -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
movements befuddle its foes, and it then attacks
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/006.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/006.ts"
new file mode 100644
index 000000000..e431ecc72
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/006.ts"
@@ -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
are not fazed by the glare from Serperior's
noble eyes."
+ },
+
+ stage: "Stage2",
+
+ abilities: [{
+ type: "Ability",
+
+ name: {
+ en: "Jungle Totem"
+ },
+
+ effect: {
+ en: "Each Energy attached to your Pokémon provides 2 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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/007.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/007.ts"
new file mode 100644
index 000000000..d132c901e
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/007.ts"
@@ -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
delicious caps on Morelull's head.
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/008.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/008.ts"
new file mode 100644
index 000000000..17cb96746
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/008.ts"
@@ -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
sleep. Once this Pokémon has its prey snoozing,
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/009.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/009.ts"
new file mode 100644
index 000000000..b6923631a
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/009.ts"
@@ -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
from a sunken ship, it was reborn as this
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 Energy attached, this attack does 70 more damage."
+ }
+ }],
+
+ weaknesses: [{
+ type: "Fire",
+ value: "+20"
+ }],
+
+ retreat: 2,
+ rarity: "Two Diamond"
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/010.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/010.ts"
new file mode 100644
index 000000000..980cff666
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/010.ts"
@@ -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.
As it races around with others of its kind,
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/011.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/011.ts"
new file mode 100644
index 000000000..7c62049cc
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/011.ts"
@@ -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
fields at speeds of up to 150 mph, its fiery mane
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/012.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/012.ts"
new file mode 100644
index 000000000..e3a057fc7
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/012.ts"
@@ -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
regrets this habit once it realizes that it has
burned its intended prey to a charred crisp."
+ },
+
+ stage: "Basic",
+
+ attacks: [{
+ name: {
+ en: "Fire Blast"
+ },
+
+ damage: 80,
+ cost: ["Fire", "Fire"],
+
+ effect: {
+ en: "Discard 2 Energy from this Pokémon."
+ }
+ }],
+
+ weaknesses: [{
+ type: "Water",
+ value: "+20"
+ }],
+
+ retreat: 2,
+ rarity: "Two Diamond"
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/013.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/013.ts"
new file mode 100644
index 000000000..ca2ae9786
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/013.ts"
@@ -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
the Sun. The fire Larvesta spouts from its horns
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/014.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/014.ts"
new file mode 100644
index 000000000..24a9b5bd0
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/014.ts"
@@ -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
parts of the world, but in cold ones, Volcarona is
revered as an embodiment of the sun."
+ },
+
+ stage: "Stage1",
+
+ attacks: [{
+ name: {
+ en: "Volcanic Ash"
+ },
+
+ cost: ["Fire", "Fire", "Colorless"],
+
+ effect: {
+ en: "Discard 2 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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/015.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/015.ts"
new file mode 100644
index 000000000..8a14f4521
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/015.ts"
@@ -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,
rocky areas where it then sprays them with toxic
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/016.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/016.ts"
new file mode 100644
index 000000000..582babca9
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/016.ts"
@@ -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
poisonous gas, then captivates them with alluring
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/017.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/017.ts"
new file mode 100644
index 000000000..d1b08ca7d
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/017.ts"
@@ -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
jump high on rare occasions but never more
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/018.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/018.ts"
new file mode 100644
index 000000000..a59c7faec
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/018.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/019.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/019.ts"
new file mode 100644
index 000000000..ced7ce932
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/019.ts"
@@ -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
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 Energy from 1 of your Benched Pokémon to your Active 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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/020.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/020.ts"
new file mode 100644
index 000000000..ec9267e81
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/020.ts"
@@ -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.
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/021.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/021.ts"
new file mode 100644
index 000000000..0acb95207
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/021.ts"
@@ -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.
However, the light also happens to attract
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/022.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/022.ts"
new file mode 100644
index 000000000..68cff02af
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/022.ts"
@@ -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
tooth itches, this Pokémon will bite another
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/023.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/023.ts"
new file mode 100644
index 000000000..1fbd6fb73
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/023.ts"
@@ -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
boulder in a single bite. This Pokémon
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/024.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/024.ts"
new file mode 100644
index 000000000..3f9164da4
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/024.ts"
@@ -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
opponents in a single hit, but it also may
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/025.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/025.ts"
new file mode 100644
index 000000000..3fcb5857c
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/025.ts"
@@ -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
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 Pokémon."
+ }
+ }],
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1,
+ rarity: "One Diamond"
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/026.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/026.ts"
new file mode 100644
index 000000000..4fa82c998
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/026.ts"
@@ -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,
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/027.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/027.ts"
new file mode 100644
index 000000000..69683d73f
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/027.ts"
@@ -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
around as a defense against Electabuzz that
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/028.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/028.ts"
new file mode 100644
index 000000000..9c583b902
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/028.ts"
@@ -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.
It's soaking up static electricity because it can't
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/029.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/029.ts"
new file mode 100644
index 000000000..bc9db81c0
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/029.ts"
@@ -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
means of attack. Opponents hit by the fur could
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/030.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/030.ts"
new file mode 100644
index 000000000..a5d9cec4b
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/030.ts"
@@ -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
not fully developed, so it uses its tail to absorb
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/031.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/031.ts"
new file mode 100644
index 000000000..f9143f2a4
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/031.ts"
@@ -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
scientists believe Mew to be the ancestor
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/032.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/032.ts"
new file mode 100644
index 000000000..69afd446c
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/032.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/033.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/033.ts"
new file mode 100644
index 000000000..0a0b3fe3a
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/033.ts"
@@ -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
say they were the guardians of an ancient city.
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/034.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/034.ts"
new file mode 100644
index 000000000..a233f73d7
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/034.ts"
@@ -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
will appear on the screen. That scenery is said
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/035.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/035.ts"
new file mode 100644
index 000000000..c4d64ca43
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/035.ts"
@@ -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,
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/036.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/036.ts"
new file mode 100644
index 000000000..68f6211db
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/036.ts"
@@ -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
within blooming wild flowers. It is particularly
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/037.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/037.ts"
new file mode 100644
index 000000000..9e5ecffd6
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/037.ts"
@@ -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
withered flowers to make them healthy again.
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/038.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/038.ts"
new file mode 100644
index 000000000..a959051ba
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/038.ts"
@@ -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
garden in its territory. It draws forth the power
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/039.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/039.ts"
new file mode 100644
index 000000000..3e581daf7
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/039.ts"
@@ -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.
If it doesn't get enough sugar, it becomes
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/040.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/040.ts"
new file mode 100644
index 000000000..078cda42b
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/040.ts"
@@ -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
mental and physical condition. It's hoped that
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/041.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/041.ts"
new file mode 100644
index 000000000..9451c9a70
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/041.ts"
@@ -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
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/042.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/042.ts"
new file mode 100644
index 000000000..35e1d4fe9
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/042.ts"
@@ -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
someone looking at it. It chases anyone
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/043.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/043.ts"
new file mode 100644
index 000000000..e6bbe3d31
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/043.ts"
@@ -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
their edges smoothed out until they're totally
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/044.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/044.ts"
new file mode 100644
index 000000000..213a9d5e2
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/044.ts"
@@ -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
of a mountain. As soon as it reaches the summit,
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/045.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/045.ts"
new file mode 100644
index 000000000..5cdbe8a70
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/045.ts"
@@ -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
shells. Those that have lived a long, long time
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/046.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/046.ts"
new file mode 100644
index 000000000..1c152e999
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/046.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/047.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/047.ts"
new file mode 100644
index 000000000..bf080de02
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/047.ts"
@@ -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
their powers and movements. As it improves, it
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/048.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/048.ts"
new file mode 100644
index 000000000..de40a49dc
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/048.ts"
@@ -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
form its body were found to match the bedrock
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/049.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/049.ts"
new file mode 100644
index 000000000..8e72fc351
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/049.ts"
@@ -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
garbage dumps, seeking out the fumes of raw,
rotting trash."
+ },
+
+ stage: "Basic",
+
+ attacks: [{
+ name: {
+ en: "Division"
+ },
+
+ cost: ["Darkness"],
+
+ effect: {
+ en: "Put 1 random Koffing from your deck onto your Bench."
+ }
+ }],
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 2,
+ rarity: "One Diamond"
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/050.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/050.ts"
new file mode 100644
index 000000000..fc132066b
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/050.ts"
@@ -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
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/051.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/051.ts"
new file mode 100644
index 000000000..7b1adab25
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/051.ts"
@@ -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
with their frustration. A rivalry exists between
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/052.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/052.ts"
new file mode 100644
index 000000000..05f74c019
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/052.ts"
@@ -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
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/053.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/053.ts"
new file mode 100644
index 000000000..a5ed406b4
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/053.ts"
@@ -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,
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/054.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/054.ts"
new file mode 100644
index 000000000..c7a04dde1
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/054.ts"
@@ -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
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/055.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/055.ts"
new file mode 100644
index 000000000..3b69e5e19
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/055.ts"
@@ -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
its neck before slamming them into the ground
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/056.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/056.ts"
new file mode 100644
index 000000000..b3c052723
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/056.ts"
@@ -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
sunbathing—it won't be able to move if its body
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/057.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/057.ts"
new file mode 100644
index 000000000..6722d6ab4
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/057.ts"
@@ -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
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/058.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/058.ts"
new file mode 100644
index 000000000..9e020c061
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/058.ts"
@@ -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.
It can carry prey such as an Exeggcute
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/059.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/059.ts"
new file mode 100644
index 000000000..28cb8868c
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/059.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/060.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/060.ts"
new file mode 100644
index 000000000..92333e78f
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/060.ts"
@@ -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,
it's a warning that the Pokémon is about to
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/061.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/061.ts"
new file mode 100644
index 000000000..882af36aa
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/061.ts"
@@ -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
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/062.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/062.ts"
new file mode 100644
index 000000000..89f6f2130
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/062.ts"
@@ -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
into thinking it's one of them. This way they won't
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/064.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/064.ts"
new file mode 100644
index 000000000..fa435d960
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/064.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/065.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/065.ts"
new file mode 100644
index 000000000..ce233a28a
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/065.ts"
@@ -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 Pokémon, put it into your hand. If it is not a Pokémon, put it on the bottom of your deck."
+ },
+
+ trainerType: "Item",
+ rarity: "Two Diamond"
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/066.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/066.ts"
new file mode 100644
index 000000000..82186f544
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/066.ts"
@@ -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 Mew ex in the Active Spot into your hand."
+ },
+
+ trainerType: "Supporter",
+ rarity: "Two Diamond"
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/067.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/067.ts"
new file mode 100644
index 000000000..dd7472bc3
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/067.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/068.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/068.ts"
new file mode 100644
index 000000000..a1c57f8d5
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/068.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/069.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/069.ts"
new file mode 100644
index 000000000..9a161a625
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/069.ts"
@@ -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
different thoughts. The three don't seem to be
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/070.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/070.ts"
new file mode 100644
index 000000000..0a1940a1d
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/070.ts"
@@ -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
are not fazed by the glare from Serperior's
noble eyes."
+ },
+
+ stage: "Stage2",
+
+ abilities: [{
+ type: "Ability",
+
+ name: {
+ en: "Jungle Totem"
+ },
+
+ effect: {
+ en: "Each Energy attached to your Pokémon provides 2 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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/071.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/071.ts"
new file mode 100644
index 000000000..5d0b3bc69
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/071.ts"
@@ -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,
rocky areas where it then sprays them with toxic
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/072.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/072.ts"
new file mode 100644
index 000000000..c42da4779
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/072.ts"
@@ -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
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 Energy from 1 of your Benched Pokémon to your Active 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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/073.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/073.ts"
new file mode 100644
index 000000000..ee0b64105
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/073.ts"
@@ -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
not fully developed, so it uses its tail to absorb
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/074.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/074.ts"
new file mode 100644
index 000000000..960b011ca
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/074.ts"
@@ -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
their powers and movements. As it improves, it
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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/075.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/075.ts"
new file mode 100644
index 000000000..cbd9ec44d
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/075.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/076.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/076.ts"
new file mode 100644
index 000000000..2a1858e57
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/076.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/077.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/077.ts"
new file mode 100644
index 000000000..8c9b5ba2f
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/077.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/078.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/078.ts"
new file mode 100644
index 000000000..978a68262
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/078.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/079.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/079.ts"
new file mode 100644
index 000000000..b8c100242
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/079.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/080.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/080.ts"
new file mode 100644
index 000000000..8f9799ced
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/080.ts"
@@ -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 Mew ex in the Active Spot into your hand."
+ },
+
+ trainerType: "Supporter",
+ rarity: "Two Star"
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/081.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/081.ts"
new file mode 100644
index 000000000..748946c7e
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/081.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/082.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/082.ts"
new file mode 100644
index 000000000..5a67a2826
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/082.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/083.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/083.ts"
new file mode 100644
index 000000000..f6e007e27
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/083.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/084.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/084.ts"
new file mode 100644
index 000000000..061bb57dc
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/084.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/085.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/085.ts"
new file mode 100644
index 000000000..3b1bad091
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/085.ts"
@@ -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
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Mythical Island/086.ts" "b/data/Pok\303\251mon TCG Pocket/Mythical Island/086.ts"
new file mode 100644
index 000000000..06a5a95e8
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Mythical Island/086.ts"
@@ -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
\ No newline at end of file