1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-10 07:51:58 +00:00

Fixed most POP sets (#99)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-10-26 17:23:45 +02:00
committed by GitHub
parent 829d78fa6f
commit afd3a664ae
153 changed files with 2328 additions and 1124 deletions

View File

@@ -5,22 +5,24 @@ const card: Card = {
name: {
en: "Heatran",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
485,
],
hp: 100,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
@@ -47,23 +49,32 @@ const card: Card = {
en: "Fire Spin",
},
effect: {
en: "Discard 2 basic Energy cards attached to Heatran. (If you can't discard cards, this attack does nothing.)",
en: "Discard 2 basic Energy cards attached to Heatran. (If you cant discard cards, this attack does nothing.)",
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
value: "+30"
},
],
description: {
en: "It dwells in volcanic caves. It digs in with its cross-shaped feet to crawl on ceilings and walls."
},
retreat: 3,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,25 +5,24 @@ const card: Card = {
name: {
en: "Rare Candy",
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Choose 1 of your Basic Pokémon in play. If you have a Stage 1 or Stage 2 card that evolves from that Pokémon in your hand, put that card on the Basic Pokémon. (This counts as evolving that Pokémon.)"
},
trainerType: "Item",
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card

View File

@@ -3,27 +3,26 @@ import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Roseanne's Research",
en: "Roseannes Research",
},
illustrator: "Kanako Eo",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Search your deck for up to 2 in any combination of Basic Pokémon and basic Energy cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward."
},
trainerType: "Supporter",
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card

View File

@@ -5,22 +5,24 @@ const card: Card = {
name: {
en: "Chimchar",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
390,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
@@ -46,6 +48,7 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Water",
@@ -53,10 +56,18 @@ const card: Card = {
},
],
description: {
en: "It agilely scales sheer cliffs to live atop craggy mountains. Its fire is put out when it sleeps."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,22 +5,24 @@ const card: Card = {
name: {
en: "Croagunk",
},
illustrator: "Ken Sugimori",
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
453,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
@@ -30,7 +32,7 @@ const card: Card = {
en: "Ghastly Sound",
},
effect: {
en: "Flip a coin. If heads, your opponent can't play any Supporter cards from his or her hand during his or her next turn.",
en: "Flip a coin. If heads, your opponent cant play any Supporter cards from his or her hand during his or her next turn.",
},
},
@@ -49,6 +51,7 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Psychic",
@@ -56,10 +59,18 @@ const card: Card = {
},
],
description: {
en: "Its cheeks hold poison sacs. It tries to catch foes off guard to jab them with toxic fingers."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,15 +5,18 @@ const card: Card = {
name: {
en: "Happiny",
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
440,
],
hp: 60,
types: [
"Colorless",
],
@@ -31,6 +34,7 @@ const card: Card = {
},
},
],
attacks: [
{
@@ -43,6 +47,7 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Fighting",
@@ -50,10 +55,18 @@ const card: Card = {
},
],
description: {
en: "It loves round white things. It carries an egg-shaped rock in imitation of CHANSEY."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,22 +5,24 @@ const card: Card = {
name: {
en: "Piplup",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
393,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
@@ -42,10 +44,11 @@ const card: Card = {
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
},
damage: 20,
damage: "20+",
},
],
weaknesses: [
{
type: "Lightning",
@@ -53,10 +56,18 @@ const card: Card = {
},
],
description: {
en: "Because it is very proud, it hates accepting food from people. Its thick down guards it from cold."
},
retreat: 1,
variants: {
normal: false,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card

View File

@@ -5,15 +5,18 @@ const card: Card = {
name: {
en: "Riolu",
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
447,
],
hp: 50,
types: [
"Fighting",
],
@@ -27,10 +30,11 @@ const card: Card = {
en: "Inner Focus",
},
effect: {
en: "Riolu can't be Paralyzed.",
en: "Riolu cant be Paralyzed.",
},
},
],
attacks: [
{
cost: [
@@ -42,21 +46,30 @@ const card: Card = {
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.",
},
damage: 10,
damage: "10+",
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
value: "+10"
},
],
description: {
en: "Its body is lithe yet powerful. It can crest three mountains and cross two canyons in one night."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,22 +5,24 @@ const card: Card = {
name: {
en: "Turtwig",
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
387,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
@@ -43,12 +45,14 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
resistances: [
{
type: "Water",
@@ -56,9 +60,18 @@ const card: Card = {
},
],
description: {
en: "Made from soil, the shell on its back hardens when it drinks water. It lives along lakes."
},
retreat: 2,
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card

View File

@@ -5,23 +5,27 @@ const card: Card = {
name: {
en: "Lucario",
},
illustrator: "Kent Kanetsuna",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
448,
],
hp: 90,
types: [
"Fighting",
],
evolveFrom: {
en: "Riolu",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@@ -33,7 +37,7 @@ const card: Card = {
en: "Blocking Punch",
},
effect: {
en: "During your opponent's next turn, any damage done to Lucario by attacks is reduced by 20 (after applying Weakness and Resistance).",
en: "During your opponents next turn, any damage done to Lucario by attacks is reduced by 20 (after applying Weakness and Resistance).",
},
damage: 40,
@@ -48,23 +52,32 @@ const card: Card = {
en: "Striking Kick",
},
effect: {
en: "This attack's damage isn't affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects of the Defending Pokémon.",
en: "This attacks damage isnt affected by Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
value: "+20"
},
],
description: {
en: "By catching the aura emanating from others, it can read their thoughts and movements."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,21 +5,26 @@ const card: Card = {
name: {
en: "Luxray",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
405,
],
hp: 120,
types: [
"Lightning",
],
evolveFrom: {
en: "Luxio",
},
stage: "Stage2",
abilities: [
@@ -29,10 +34,11 @@ const card: Card = {
en: "Intimidating Fang",
},
effect: {
en: "As long as Luxray is your Active Pokémon, any damage done by an opponent's attack is reduced by 10 (before applying Weakness and Resistance).",
en: "As long as Luxray is your Active Pokémon, any damage done by an opponents attack is reduced by 10 (before applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
@@ -51,12 +57,14 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
value: "+30"
},
],
resistances: [
{
type: "Metal",
@@ -64,9 +72,18 @@ const card: Card = {
},
],
description: {
en: "When its eyes gleam gold, it can spot hiding preyeven those taking shelter behind a wall."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,23 +5,27 @@ const card: Card = {
name: {
en: "Probopass",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
476,
],
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Nosepass",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@@ -33,7 +37,7 @@ const card: Card = {
en: "Rock Slide",
},
effect: {
en: "Does 10 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
en: "Does 10 damage to 2 of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 20,
@@ -50,16 +54,18 @@ const card: Card = {
effect: {
en: "Flip 3 coins. This attack does 50 damage plus 20 more damage for each heads.",
},
damage: 50,
damage: "50+",
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
value: "+30"
},
],
resistances: [
{
type: "Psychic",
@@ -67,9 +73,18 @@ const card: Card = {
},
],
description: {
en: "It exudes strong magnetium from all cover. It controls three small units called Mini-Noses."
},
retreat: 3,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,23 +5,27 @@ const card: Card = {
name: {
en: "Yanmega",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
469,
],
hp: 90,
types: [
"Grass",
],
evolveFrom: {
en: "Yanma",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@@ -53,12 +57,14 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
value: "+20"
},
],
resistances: [
{
type: "Fighting",
@@ -66,9 +72,18 @@ const card: Card = {
},
],
description: {
en: "By churning its wings, it creates shock waves that inflict critical internal injuries to foes."
},
retreat: 0,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,23 +5,27 @@ const card: Card = {
name: {
en: "Cherrim",
},
illustrator: "Atsuko Nishida",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
421,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Cherubi",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@@ -48,16 +52,18 @@ const card: Card = {
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 20 more damage and remove 3 damage counters from Cherrim.",
},
damage: 20,
damage: "20+",
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Water",
@@ -65,9 +71,18 @@ const card: Card = {
},
],
description: {
en: "It blooms during times of strong sunlight. It tries to make up for everything it endured as a bud."
},
retreat: 2,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,22 +5,24 @@ const card: Card = {
name: {
en: "Carnivine",
},
illustrator: "Kouki Saitou",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
455,
],
hp: 70,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
@@ -31,7 +33,7 @@ const card: Card = {
en: "Swallow Up",
},
effect: {
en: "Before doing damage, count the remaining HP of the Defending Pokémon and Carnivine. If the Defending Pokémon has fewer remaining HP than Carnivine's, this attack does 60 damage instead.",
en: "Before doing damage, count the remaining HP of the Defending Pokémon and Carnivine. If the Defending Pokémon has fewer remaining HP than Carnivines, this attack does 60 damage instead.",
},
damage: 30,
@@ -51,12 +53,14 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Water",
@@ -64,9 +68,18 @@ const card: Card = {
},
],
description: {
en: "It attracts prey with its sweet-smelling saliva, then chomps down. It takes a whole day to eat prey."
},
retreat: 1,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,23 +5,27 @@ const card: Card = {
name: {
en: "Luxio",
},
illustrator: "Ken Sugimori",
illustrator: "Kagemaru Himeno",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
404,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Shinx",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@@ -34,7 +38,7 @@ const card: Card = {
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.",
},
damage: 10,
damage: "10+",
},
{
@@ -52,12 +56,14 @@ const card: Card = {
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
@@ -65,9 +71,18 @@ const card: Card = {
},
],
description: {
en: "Its claws loose electricity with enough amperage to cause fainting. They live in small groups."
},
retreat: 0,
variants: {
normal: true,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card

View File

@@ -5,25 +5,24 @@ const card: Card = {
name: {
en: "Night Maintenance",
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
effect: {
en: "Search your discard pile for up to 3 in any combination of Pokémon and basic Energy cards. Show them to your opponent and shuffle them into your deck."
},
trainerType: "Item",
variants: {
normal: true,
reverse: false,
holo: false,
firstEdition: false
}
}
export default card