1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 08:19:17 +00:00

Pop serie do not report any sets (#27)

* rename to another name
* renamed
* Renamed references
This commit is contained in:
2021-06-02 12:13:12 +02:00
committed by GitHub
parent ec1b6a06b0
commit 46220745ce
204 changed files with 10 additions and 10 deletions

View File

@ -0,0 +1,69 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
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: [
"Colorless",
"Colorless",
],
name: {
en: "Body Slam",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20,
},
{
cost: [
"Fire",
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Fire Spin",
},
effect: {
en: "Discard 2 basic Energy cards attached to Heatran. (If you can't discard cards, this attack does nothing.)",
},
damage: 90,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,29 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Rare Candy",
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
}
export default card

View File

@ -0,0 +1,29 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Roseanne's Research",
},
illustrator: "Kanako Eo",
rarity: "Uncommon",
category: "Trainer",
set: Set,
}
export default card

View File

@ -0,0 +1,62 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Chimchar",
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
390,
],
hp: 50,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
name: {
en: "Scratch",
},
damage: 10,
},
{
cost: [
"Fire",
"Colorless",
],
name: {
en: "Ember",
},
effect: {
en: "Flip a coin. If tails, discard a Fire Energy attached to Chimchar.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Water",
value: "+10"
},
],
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Croagunk",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
453,
],
hp: 60,
types: [
"Psychic",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
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.",
},
},
{
cost: [
"Psychic",
"Psychic",
],
name: {
en: "Finger Poke",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Poisoned.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "+10"
},
],
}
export default card

View File

@ -0,0 +1,59 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Happiny",
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
440,
],
hp: 60,
types: [
"Colorless",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Baby Evolution",
},
effect: {
en: "Once during your turn (before your attack), you may put Chansey from your hand onto Happiny (this counts as evolving Happiny) and remove all damage counters from Happiny.",
},
},
],
attacks: [
{
name: {
en: "Lively",
},
effect: {
en: "Remove 2 damage counters from 1 of your Pokémon.",
},
},
],
weaknesses: [
{
type: "Fighting",
value: "+10"
},
],
}
export default card

View File

@ -0,0 +1,62 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Piplup",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
393,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
name: {
en: "Peck",
},
damage: 10,
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Water Splash",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 10 more damage.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
}
export default card

View File

@ -0,0 +1,62 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Riolu",
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
447,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Inner Focus",
},
effect: {
en: "Riolu can't be Paralyzed.",
},
},
],
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Quick Attack",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,64 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Turtwig",
},
illustrator: "Masakazu Fukuda",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
387,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
name: {
en: "Tackle",
},
damage: 10,
},
{
cost: [
"Grass",
],
name: {
en: "Razor Leaf",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,70 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
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",
attacks: [
{
cost: [
"Metal",
"Colorless",
],
name: {
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).",
},
damage: 40,
},
{
cost: [
"Fighting",
"Colorless",
"Colorless",
],
name: {
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.",
},
damage: 60,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
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: [
{
type: "Poke-BODY",
name: {
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).",
},
},
],
attacks: [
{
cost: [
"Lightning",
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunder",
},
effect: {
en: "Flip a coin. If tails, Luxray does 40 damage to itself.",
},
damage: 120,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,75 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
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",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
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.)",
},
damage: 20,
},
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Triple Nose",
},
effect: {
en: "Flip 3 coins. This attack does 50 damage plus 20 more damage for each heads.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,74 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
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",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Supersonic",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Air Slash",
},
effect: {
en: "Flip a coin. If tails, discard an Energy attached to Yanmega.",
},
damage: 70,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
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",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Worry Seed",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Magical Leaf",
},
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,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
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: [
"Grass",
"Colorless",
],
name: {
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.",
},
damage: 30,
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Wring Out",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed and discard an Energy card attached to the Defending Pokémon.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "+20"
},
],
resistances: [
{
type: "Water",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,73 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Luxio",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
404,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Shinx",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Fasten Claws",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 30 more damage.",
},
damage: 10,
},
{
cost: [
"Lightning",
"Lightning",
],
name: {
en: "Thunder Fang",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
}
export default card

View File

@ -0,0 +1,29 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 8'
const card: Card = {
name: {
en: "Night Maintenance",
},
illustrator: "Ryo Ueda",
rarity: "Uncommon",
category: "Trainer",
set: Set,
}
export default card