diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/001.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/001.ts"
index 723d2772c..3eb326047 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/001.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/001.ts"
@@ -12,11 +12,11 @@ const card: Card = {
rarity: "One Diamond",
category: "Trainer",
- description: {
+ effect: {
en: "Heal 20 damage from 1 of your Pokémon."
},
trainerType: "Item"
}
-export default card
\ No newline at end of file
+export default card
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/002.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/002.ts"
index 4cd0be219..9934b09ec 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/002.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/002.ts"
@@ -12,11 +12,11 @@ const card: Card = {
rarity: "One Diamond",
category: "Trainer",
- description: {
- en: "During this turn, the Retreat Cost of your Active Pokémon is 1 less."
+ effect: {
+ en: "During this turn, the Retreat Cost of your Active Pokémon is 1 less."
},
trainerType: "Item"
}
-export default card
\ No newline at end of file
+export default card
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/003.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/003.ts"
index 115f0faa3..30cba86d3 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/003.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/003.ts"
@@ -12,11 +12,11 @@ const card: Card = {
rarity: "One Diamond",
category: "Trainer",
- description: {
+ effect: {
en: "Your opponent reveals their hand."
},
trainerType: "Item"
}
-export default card
\ No newline at end of file
+export default card
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/004.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/004.ts"
index 452707c8c..cc29938e2 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/004.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/004.ts"
@@ -12,11 +12,11 @@ const card: Card = {
rarity: "One Diamond",
category: "Trainer",
- description: {
+ effect: {
en: "Look at the top 3 cards of your deck."
},
trainerType: "Item"
}
-export default card
\ No newline at end of file
+export default card
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/005.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/005.ts"
index 1fb0bfefe..12130d40a 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/005.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/005.ts"
@@ -12,11 +12,11 @@ const card: Card = {
rarity: "One Diamond",
category: "Trainer",
- description: {
- en: "Put 1 random Basic Pokémon from your deck into your hand."
+ effect: {
+ en: "Put 1 random Basic Pokémon from your deck into your hand."
},
trainerType: "Item"
}
-export default card
\ No newline at end of file
+export default card
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/006.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/006.ts"
index f284376bc..3c8d09593 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/006.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/006.ts"
@@ -12,11 +12,11 @@ const card: Card = {
rarity: "One Diamond",
category: "Trainer",
- description: {
+ effect: {
en: "Your opponent shuffles their hand into their deck and draws 3 cards."
},
trainerType: "Item"
}
-export default card
\ No newline at end of file
+export default card
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/007.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/007.ts"
index ccde9ac72..5b5e48da8 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/007.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/007.ts"
@@ -12,11 +12,11 @@ const card: Card = {
rarity: "One Diamond",
category: "Trainer",
- description: {
+ effect: {
en: "Draw 2 cards."
},
trainerType: "Supporter"
}
-export default card
\ No newline at end of file
+export default card
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/008.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/008.ts"
new file mode 100644
index 000000000..be77c1d68
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/008.ts"
@@ -0,0 +1,22 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Pokédex"
+ },
+
+ illustrator: "Yuu Nishida",
+ rarity: "One Diamond",
+ category: "Trainer",
+
+ effect: {
+ en: "Look at the top 3 cards of your deck."
+ },
+
+ trainerType: "Item"
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/009.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/009.ts"
index 1d6630df3..479fbfd1b 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/009.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/009.ts"
@@ -21,7 +21,20 @@ const card: Card = {
cost: ["Lightning"],
damage: 20
- }]
+ }],
+
+ hp: 60,
+
+ description: {
+ en: "When it is angered, it immediately discharges the
energy stored in the pouches in its cheeks."
+ },
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/010.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/010.ts"
index 945f661d5..3c51d18a1 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/010.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/010.ts"
@@ -25,7 +25,20 @@ const card: Card = {
effect: {
en: "Discard 2 P Energy from this Pokémon."
}
- }]
+ }],
+
+ hp: 120,
+
+ description: {
+ en: "It was created by a scientist after years of horrific
gene-splicing and DNA-engineering experiments."
+ },
+
+ weaknesses: [{
+ type: "Darkness",
+ value: "+20"
+ }],
+
+ retreat: 2
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/011.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/011.ts"
index aab6a4719..e2752c41a 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/011.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/011.ts"
@@ -21,7 +21,20 @@ const card: Card = {
cost: ["Colorless", "Colorless", "Colorless"],
damage: 60
- }]
+ }],
+
+ hp: 120,
+
+ description: {
+ en: "This kindly Pokémon lays highly nutritious eggs
and shares them with injured Pokémon or people."
+ },
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 3
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/012.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/012.ts"
index b6559b9e5..d60fd67d3 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/012.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/012.ts"
@@ -23,9 +23,22 @@ const card: Card = {
damage: 10,
effect: {
- en: "Draw 1 card."
+ en: "Draw a card."
}
- }]
+ }],
+
+ hp: 60,
+
+ description: {
+ en: "All it does is sleep during the daytime. At night,
it patrols its territory with its eyes aglow."
+ },
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/013.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/013.ts"
index e95b76fc7..8cef43cea 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/013.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/013.ts"
@@ -33,7 +33,24 @@ const card: Card = {
cost: ["Grass", "Colorless", "Colorless"],
damage: 60
- }]
+ }],
+
+ hp: 120,
+
+ evolveFrom: {
+ en: "Metapod"
+ },
+
+ description: {
+ en: "In battle, it flaps its wings at great speed to
release highly toxic dust into the air."
+ },
+
+ weaknesses: [{
+ type: "Fire",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/014.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/014.ts"
index ff5f0b6d3..d73a8225b 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/014.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/014.ts"
@@ -25,7 +25,17 @@ const card: Card = {
effect: {
en: "Heal 20 damage from this Pokémon."
}
- }]
+ }],
+
+ hp: 140,
+ suffix: "EX",
+
+ weaknesses: [{
+ type: "Lightning",
+ value: "+20"
+ }],
+
+ retreat: 3
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/015.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/015.ts"
index 0c8e77215..6d73ad853 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/015.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/015.ts"
@@ -21,7 +21,20 @@ const card: Card = {
cost: ["Lightning"],
damage: 20
- }]
+ }],
+
+ hp: 60,
+
+ description: {
+ en: "When it is angered, it immediately discharges the
energy stored in the pouches in its cheeks."
+ },
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/016.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/016.ts"
index f4f7576eb..efaabc40c 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/016.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/016.ts"
@@ -21,7 +21,20 @@ const card: Card = {
cost: ["Psychic"],
damage: 20
- }]
+ }],
+
+ hp: 60,
+
+ description: {
+ en: "It is said that happiness will come to those who
see a gathering of Clefairy dancing under a
full moon."
+ },
+
+ weaknesses: [{
+ type: "Metal",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/017.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/017.ts"
index 592ed2ac3..e7dd6176b 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/017.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/017.ts"
@@ -25,7 +25,20 @@ const card: Card = {
effect: {
en: "This Pokémon also does 10 damage to itself."
}
- }]
+ }],
+
+ hp: 50,
+
+ description: {
+ en: "It lives in groups in the treetops. If it loses sight of
its group, it becomes infuriated by its loneliness."
+ },
+
+ weaknesses: [{
+ type: "Psychic",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/018.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/018.ts"
index 11fc4ae1a..bf6196fb2 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/018.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/018.ts"
@@ -25,7 +25,24 @@ const card: Card = {
effect: {
en: "Heal 30 damage from this Pokémon."
}
- }]
+ }],
+
+ hp: 160,
+
+ evolveFrom: {
+ en: "Ivysaur"
+ },
+
+ description: {
+ en: "Its plant blooms when it is absorbing solar
energy. It stays on the move to seek sunlight."
+ },
+
+ weaknesses: [{
+ type: "Fire",
+ value: "+20"
+ }],
+
+ retreat: 3
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/019.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/019.ts"
index c177f1ced..6732a81ea 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/019.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/019.ts"
@@ -33,7 +33,24 @@ const card: Card = {
cost: ["Water", "Colorless"],
damage: 60
- }]
+ }],
+
+ hp: 120,
+
+ evolveFrom: {
+ en: "Frogadier"
+ },
+
+ description: {
+ en: "It creates throwing stars out of compressed water.
When it spins them and throws them at high speed,
these stars can split metal in two."
+ },
+
+ weaknesses: [{
+ type: "Lightning",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/020.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/020.ts"
index 35b9a4efb..6b4247fb8 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/020.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/020.ts"
@@ -25,7 +25,24 @@ const card: Card = {
effect: {
en: "Flip a coin. If tails, this attack does nothing."
}
- }]
+ }],
+
+ hp: 70,
+
+ evolveFrom: {
+ en: "Gastly"
+ },
+
+ description: {
+ en: "It likes to lurk in the dark and tap shoulders
with a gaseous hand. Its touch causes endless
shuddering."
+ },
+
+ weaknesses: [{
+ type: "Darkness",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/021.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/021.ts"
index dd7f2b483..bdf2d698c 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/021.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/021.ts"
@@ -21,7 +21,20 @@ const card: Card = {
cost: ["Fighting", "Fighting", "Fighting"],
damage: 70
- }]
+ }],
+
+ hp: 110,
+
+ description: {
+ en: "As it digs through the ground, it absorbs many
hard objects. This is what makes its body so solid."
+ },
+
+ weaknesses: [{
+ type: "Grass",
+ value: "+20"
+ }],
+
+ retreat: 4
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/022.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/022.ts"
index 672cfcb6e..1d437795c 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/022.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/022.ts"
@@ -24,7 +24,20 @@ const card: Card = {
effect: {
en: "Your opponent's Active Pokémon is now Asleep."
}
- }]
+ }],
+
+ hp: 50,
+
+ description: {
+ en: "When its huge eyes waver, it sings a mysteriously
soothing melody that lulls its enemies to sleep."
+ },
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/023.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/023.ts"
index 66f2a0b7c..2e0edfb94 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/023.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/023.ts"
@@ -21,7 +21,20 @@ const card: Card = {
cost: ["Grass", "Colorless"],
damage: 40
- }]
+ }],
+
+ hp: 70,
+
+ description: {
+ en: "There is a plant seed on its back right from the
day this Pokémon is born. The seed slowly
grows larger."
+ },
+
+ weaknesses: [{
+ type: "Fire",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/024.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/024.ts"
index 63493d7f9..a9bb33c5d 100644
--- "a/data/Pok\303\251mon TCG Pocket/Promos-A/024.ts"
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/024.ts"
@@ -21,7 +21,20 @@ const card: Card = {
cost: ["Lightning"],
damage: 20
- }]
+ }],
+
+ hp: 60,
+
+ description: {
+ en: "The electromagnetic waves emitted by the units
at the sides of its head expel antigravity, which
allows it to float."
+ },
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1
}
export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/025.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/025.ts"
new file mode 100644
index 000000000..60a3c4ce2
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/025.ts"
@@ -0,0 +1,46 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Moltres ex"
+ },
+
+ illustrator: "PLANETA Igarashi",
+ rarity: "Four Diamond",
+ category: "Pokemon",
+ hp: 140,
+ types: ["Fire"],
+ stage: "Basic",
+ suffix: "EX",
+
+ attacks: [{
+ name: {
+ en: "Inferno Dance"
+ },
+
+ cost: ["Fire"],
+
+ effect: {
+ en: "Flip 3 coins. Take an amount of Energy from your Energy Zone equal to the number of heads and attach it to your Benched Pokémon in any way you like."
+ }
+ }, {
+ name: {
+ en: "Heat Blast"
+ },
+
+ damage: 70,
+ cost: ["Fire", "Colorless", "Colorless"]
+ }],
+
+ weaknesses: [{
+ type: "Lightning",
+ value: "+20"
+ }],
+
+ retreat: 2
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/026.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/026.ts"
new file mode 100644
index 000000000..8af2c1093
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/026.ts"
@@ -0,0 +1,40 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Pikachu"
+ },
+
+ illustrator: "Kouki Saitou",
+ rarity: "One Star",
+ 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: "Gnaw"
+ },
+
+ damage: 20,
+ cost: ["Lightning"]
+ }],
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/027.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/027.ts"
new file mode 100644
index 000000000..bdb8530a3
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/027.ts"
@@ -0,0 +1,40 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Snivy"
+ },
+
+ illustrator: "Yoriyuki Ikegami",
+ rarity: "One Diamond",
+ category: "Pokemon",
+ hp: 60,
+ 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: "Tackle"
+ },
+
+ damage: 20,
+ cost: ["Grass"]
+ }],
+
+ weaknesses: [{
+ type: "Fire",
+ value: "+20"
+ }],
+
+ retreat: 1
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/028.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/028.ts"
new file mode 100644
index 000000000..536aac23a
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/028.ts"
@@ -0,0 +1,47 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Volcarona"
+ },
+
+ illustrator: "Shin Nagasawa",
+ rarity: "Three Diamond",
+ 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
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/029.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/029.ts"
new file mode 100644
index 000000000..7a5369744
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/029.ts"
@@ -0,0 +1,48 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Blastoise"
+ },
+
+ illustrator: "danciao",
+ rarity: "One Star",
+ category: "Pokemon",
+ hp: 150,
+ types: ["Water"],
+
+ evolveFrom: {
+ en: "Wartortle"
+ },
+
+ description: {
+ en: "It crushes its foe under its heavy body to cause
fainting. In a pinch, it will withdraw inside its shell."
+ },
+
+ stage: "Stage2",
+
+ attacks: [{
+ name: {
+ en: "Hydro Pump"
+ },
+
+ damage: 80,
+ cost: ["Water", "Water", "Colorless"],
+
+ effect: {
+ en: "If this Pokémon has at least 2 extra Energy attached, this attack does 60 more damage."
+ }
+ }],
+
+ weaknesses: [{
+ type: "Lightning",
+ value: "+20"
+ }],
+
+ retreat: 3
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/030.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/030.ts"
new file mode 100644
index 000000000..6f29d9518
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/030.ts"
@@ -0,0 +1,43 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Eevee"
+ },
+
+ illustrator: "En Morikura",
+ rarity: "One Diamond",
+ 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: "Growl"
+ },
+
+ cost: ["Colorless"],
+
+ effect: {
+ en: "During your opponent's next turn, attacks used by the Defending Pokémon do −20 damage."
+ }
+ }],
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/031.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/031.ts"
new file mode 100644
index 000000000..cb1b36e95
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/031.ts"
@@ -0,0 +1,48 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Cinccino"
+ },
+
+ illustrator: "MAHOU",
+ rarity: "One Diamond",
+ category: "Pokemon",
+ hp: 90,
+ types: ["Colorless"],
+
+ evolveFrom: {
+ en: "Minccino"
+ },
+
+ description: {
+ en: "Its body secretes oil that this Pokémon spreads
over its nest as a coating to protect it from dust.
Cinccino won't tolerate even a speck of the stuff."
+ },
+
+ stage: "Stage1",
+
+ attacks: [{
+ name: {
+ en: "Do the Wave"
+ },
+
+ damage: 30,
+ cost: ["Colorless", "Colorless", "Colorless"],
+
+ effect: {
+ en: "This attack does 30 damage for each of your Benched Pokémon."
+ }
+ }],
+
+ weaknesses: [{
+ type: "Fighting",
+ value: "+20"
+ }],
+
+ retreat: 1
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/032.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/032.ts"
new file mode 100644
index 000000000..da2d3e601
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/032.ts"
@@ -0,0 +1,44 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Charmander"
+ },
+
+ illustrator: "Naoyo Kimura",
+ rarity: "Three Diamond",
+ category: "Pokemon",
+ hp: 60,
+ types: ["Fire"],
+
+ description: {
+ en: "It has a preference for hot things. When it rains,
steam is said to spout from the tip of its tail."
+ },
+
+ stage: "Basic",
+
+ attacks: [{
+ name: {
+ en: "Ember"
+ },
+
+ damage: 30,
+ cost: ["Fire"],
+
+ effect: {
+ en: "Discard a Energy from this Pokémon."
+ }
+ }],
+
+ weaknesses: [{
+ type: "Water",
+ value: "+20"
+ }],
+
+ retreat: 1
+}
+
+export default card
\ No newline at end of file
diff --git "a/data/Pok\303\251mon TCG Pocket/Promos-A/033.ts" "b/data/Pok\303\251mon TCG Pocket/Promos-A/033.ts"
new file mode 100644
index 000000000..a759a9d49
--- /dev/null
+++ "b/data/Pok\303\251mon TCG Pocket/Promos-A/033.ts"
@@ -0,0 +1,40 @@
+import { Card } from "../../../interfaces"
+import Set from "../Promos-A"
+
+const card: Card = {
+ set: Set,
+
+ name: {
+ en: "Squirtle"
+ },
+
+ illustrator: "Kanako Eo",
+ rarity: "Three Diamond",
+ category: "Pokemon",
+ hp: 60,
+ types: ["Water"],
+
+ description: {
+ en: "When it retracts its long neck into its shell, it
squirts out water with vigorous force."
+ },
+
+ stage: "Basic",
+
+ attacks: [{
+ name: {
+ en: "Water Gun"
+ },
+
+ damage: 20,
+ cost: ["Water"]
+ }],
+
+ weaknesses: [{
+ type: "Lightning",
+ value: "+20"
+ }],
+
+ retreat: 1
+}
+
+export default card
\ No newline at end of file