1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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,68 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Entei",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
244,
],
hp: 70,
types: [
"Fire",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Stomp",
},
effect: {
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
},
damage: 10,
},
{
cost: [
"Fire",
"Fire",
"Colorless",
],
name: {
en: "Fire Spin",
},
effect: {
en: "Discard 2 basic Energy cards attached to Entei or this attack does nothing.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Water",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,29 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Pokémon Park",
},
illustrator: "Kazuo Yazawa",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Stadium",
}
export default card

View File

@ -0,0 +1,29 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "TV Reporter",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Supporter",
}
export default card

View File

@ -0,0 +1,62 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Bulbasaur",
},
illustrator: "Midori Harada",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
1,
],
hp: 40,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Bite",
},
damage: 10,
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Razor Leaf",
},
damage: 20,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,52 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Cacnea",
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
331,
],
hp: 40,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Sand Attack",
},
effect: {
en: "If the Defending Pokémon tries to attack during your opponent's next turn, your opponent flips a coin. If tails, that attack does nothing.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,65 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Luvdisc",
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
370,
],
hp: 60,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Paralyzing Kiss",
},
effect: {
en: "If there are 2 Defending Pokémon in play, choose 1 of the Defending Pokémon. That Pokémon is now Paralyzed. (If there is only 1 Defending Pokémon, this attack does nothing.)",
},
},
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Fast Stream",
},
effect: {
en: "Move 1 Energy card attached to the Defending Pokémon to the other Defending Pokémon. (Ignore this effect if your opponent has only 1 Defending Pokémon.)",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Phanpy",
},
illustrator: "Tomokazu Komiya",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
231,
],
hp: 50,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Fighting",
],
name: {
en: "Double Spin",
},
effect: {
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Body Slam",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,64 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Pikachu",
},
illustrator: "Yuka Morii",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
25,
],
hp: 40,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gnaw",
},
damage: 10,
},
{
cost: [
"Lightning",
"Colorless",
],
name: {
en: "Thunder Jolt",
},
effect: {
en: "Flip a coin. If tails, Pikachu does 10 damage to itself.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,63 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Celebi ex",
},
illustrator: "Ryo Ueda",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
251,
],
hp: 80,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Time Reversal",
},
effect: {
en: "Once during your turn, when you put Celebi ex from your hand onto your Bench, you may search your discard pile for a card, show it to your opponent, and put it on top of your deck.",
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Psychic Shield",
},
effect: {
en: "Prevent all effects of attacks, including damage, done to Celebi ex by your opponent's Pokémon",
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,71 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Pidgeot",
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
18,
],
hp: 80,
types: [
"Colorless",
],
evolveFrom: {
en: "Pidgeotto",
},
stage: "Stage2",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Beating Wings",
},
effect: {
en: "Once during your turn (before your attack), If Pidgeot is your Active Pokémon, you may shuffle 1 of your Benched Pokémon and all cards attached to it in your deck. This power can't be used if Pidgeot is affected by a Special Condition.",
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Sharp Beak",
},
effect: {
en: "Flip a coin. If heads, this attack does 20 damage plus 30 more damage.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card

View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Raikou",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
243,
],
hp: 70,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Roar",
},
effect: {
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon, if any.",
},
},
{
cost: [
"Lightning",
"Lightning",
"Colorless",
],
name: {
en: "Thunder",
},
effect: {
en: "Flip a coin. If tails, Raikou does 20 damage to itself.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,63 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Suicune",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
245,
],
hp: 70,
types: [
"Water",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Mirror Coat",
},
effect: {
en: "If Suicune is Burned or Poisoned by an opponent's attack (even if Suicune is Knocked Out), the Attacking Pokémon is now affected by the same Special Conditions (1 if there is only 1).",
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
],
name: {
en: "Bubblebeam",
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Tauros",
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
128,
],
hp: 70,
types: [
"Colorless",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Rage",
},
effect: {
en: "Does 10 damage plus 10 more damage for each damage counter on Tauros.",
},
damage: 10,
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Take Down",
},
effect: {
en: "Tauros does 10 damage to itself.",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Venusaur",
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
3,
],
hp: 120,
types: [
"Grass",
],
evolveFrom: {
en: "Ivysaur",
},
stage: "Stage2",
attacks: [
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Wide Solarbeam",
},
effect: {
en: "Does 20 damage to 2 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 20,
},
{
cost: [
"Grass",
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Hard Plant",
},
effect: {
en: "Venusaur can't use Hard Plant during your next turn.",
},
damage: 80,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,66 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Ivysaur",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
2,
],
hp: 80,
types: [
"Grass",
],
evolveFrom: {
en: "Bulbasaur",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Poison Seed",
},
effect: {
en: "The Defending Pokémon is now Poisoned.",
},
},
{
cost: [
"Grass",
"Grass",
"Colorless",
],
name: {
en: "Razor Leaf",
},
damage: 50,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
}
export default card

View File

@ -0,0 +1,29 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Mr. Briney's Compassion",
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Supporter",
}
export default card

View File

@ -0,0 +1,29 @@
import { Card } from '../../../interfaces'
import Set from '../POP Series 2'
const card: Card = {
name: {
en: "Multi Technical Machine 01",
},
illustrator: "\"Big Mama\" Tagawa",
rarity: "Uncommon",
category: "Trainer",
set: Set,
trainerType: "Technical Machine",
}
export default card