mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-14 08:39:17 +00:00
Pop serie do not report any sets (#27)
* rename to another name * renamed * Renamed references
This commit is contained in:
71
data/POP/POP Series 6/1.ts
Normal file
71
data/POP/POP Series 6/1.ts
Normal file
@ -0,0 +1,71 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Bastiodon",
|
||||
},
|
||||
illustrator: "Kazuyuki Kano",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
411,
|
||||
],
|
||||
hp: 130,
|
||||
types: [
|
||||
"Metal",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Shieldon",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-BODY",
|
||||
name: {
|
||||
en: "Protective Wall",
|
||||
},
|
||||
effect: {
|
||||
en: "Prevent all damage done to your Benched Pokémon by your opponent's attacks.",
|
||||
},
|
||||
},
|
||||
],
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Metal",
|
||||
"Metal",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Anger Revenge",
|
||||
},
|
||||
effect: {
|
||||
en: "If Bastiodon was damaged by an attack during your opponent's last turn, this attack does 40 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 60,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+40"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
74
data/POP/POP Series 6/10.ts
Normal file
74
data/POP/POP Series 6/10.ts
Normal file
@ -0,0 +1,74 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Staravia",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
397,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Starly",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Whirlwind",
|
||||
},
|
||||
effect: {
|
||||
en: "Your opponent switches the Defending Pokémon with 1 of his or her Benched Pokémon.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Clutch",
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
63
data/POP/POP Series 6/11.ts
Normal file
63
data/POP/POP Series 6/11.ts
Normal file
@ -0,0 +1,63 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Bidoof",
|
||||
},
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
399,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Amnesia",
|
||||
},
|
||||
effect: {
|
||||
en: "Choose 1 of the Defending Pokémon's attacks. That Pokémon can't use that attack during your opponent's next turn.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Scavenge",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your discard pile for a Trainer card, show it to your opponent, and put it into your hand.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
64
data/POP/POP Series 6/12.ts
Normal file
64
data/POP/POP Series 6/12.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Buneary",
|
||||
},
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
427,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Splash",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Jump Kick",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
70
data/POP/POP Series 6/13.ts
Normal file
70
data/POP/POP Series 6/13.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Cherubi",
|
||||
},
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
420,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Grass",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
],
|
||||
name: {
|
||||
en: "Sleep Powder",
|
||||
},
|
||||
effect: {
|
||||
en: "The Defending Pokémon is now Asleep.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Grass",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Leech Seed",
|
||||
},
|
||||
effect: {
|
||||
en: "If this attack does any damage to the Defending Pokémon (after applying Weakness and Resistance), remove 1 damage counter from Cherubi.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fire",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Water",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
62
data/POP/POP Series 6/14.ts
Normal file
62
data/POP/POP Series 6/14.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
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
|
62
data/POP/POP Series 6/15.ts
Normal file
62
data/POP/POP Series 6/15.ts
Normal file
@ -0,0 +1,62 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
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
|
69
data/POP/POP Series 6/16.ts
Normal file
69
data/POP/POP Series 6/16.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Starly",
|
||||
},
|
||||
illustrator: "Masakazu Fukuda",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
396,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Gust",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 20 more damage.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
64
data/POP/POP Series 6/17.ts
Normal file
64
data/POP/POP Series 6/17.ts
Normal file
@ -0,0 +1,64 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
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
|
68
data/POP/POP Series 6/2.ts
Normal file
68
data/POP/POP Series 6/2.ts
Normal file
@ -0,0 +1,68 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Lucario",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
448,
|
||||
],
|
||||
hp: 90,
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Riolu",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Feint",
|
||||
},
|
||||
effect: {
|
||||
en: "This attack's damage isn't affected by Resistance.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fighting",
|
||||
"Fighting",
|
||||
],
|
||||
name: {
|
||||
en: "Aura Sphere",
|
||||
},
|
||||
effect: {
|
||||
en: "Does 20 damage to 1 of your opponent's Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
65
data/POP/POP Series 6/3.ts
Normal file
65
data/POP/POP Series 6/3.ts
Normal file
@ -0,0 +1,65 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Manaphy",
|
||||
},
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
490,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Call for Family",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a Basic Pokémon and put it onto your Bench. Shuffle your deck afterward.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Water",
|
||||
"Water",
|
||||
],
|
||||
name: {
|
||||
en: "Aqua Ring",
|
||||
},
|
||||
effect: {
|
||||
en: "Switch Manaphy with 1 of your Benched Pokémon.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
69
data/POP/POP Series 6/4.ts
Normal file
69
data/POP/POP Series 6/4.ts
Normal file
@ -0,0 +1,69 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pachirisu",
|
||||
},
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
417,
|
||||
],
|
||||
hp: 70,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Minor Errand-Running",
|
||||
},
|
||||
effect: {
|
||||
en: "Search your deck for a basic Energy card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
],
|
||||
name: {
|
||||
en: "Thunder Jolt",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, Pachirisu does 10 damage to itself.",
|
||||
},
|
||||
damage: 20,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "+20"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
70
data/POP/POP Series 6/5.ts
Normal file
70
data/POP/POP Series 6/5.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Rampardos",
|
||||
},
|
||||
illustrator: "Kazuyuki Kano",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
409,
|
||||
],
|
||||
hp: 120,
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
evolveFrom: {
|
||||
en: "Cherrim",
|
||||
},
|
||||
stage: "Stage2",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fighting",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Assurance",
|
||||
},
|
||||
effect: {
|
||||
en: "As long as the Defending Pokémon's remaining HP is 60 or less, this attack's base damage is 60 instead of 30.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Fighting",
|
||||
"Fighting",
|
||||
"Fighting",
|
||||
],
|
||||
name: {
|
||||
en: "Hasty Headbutt",
|
||||
},
|
||||
effect: {
|
||||
en: "Rampardos does 20 damage to itself. This attack's damage isn't affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on the Defending Pokémon.",
|
||||
},
|
||||
damage: 100,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Grass",
|
||||
value: "+30"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
70
data/POP/POP Series 6/6.ts
Normal file
70
data/POP/POP Series 6/6.ts
Normal file
@ -0,0 +1,70 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Drifloon",
|
||||
},
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
425,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Psychic",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
],
|
||||
name: {
|
||||
en: "Blowing Wind",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, put 1 of your Benched Pokémon and all cards attached to on top of your deck. Shuffle your deck afterward.",
|
||||
},
|
||||
|
||||
},
|
||||
{
|
||||
cost: [
|
||||
"Psychic",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Ominous Wind",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, the Defending Pokémon is now Confused and can't retreat during your opponent's next turn.",
|
||||
},
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Darkness",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
52
data/POP/POP Series 6/7.ts
Normal file
52
data/POP/POP Series 6/7.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Gible",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
443,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Colorless",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Surprise Attack",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Colorless",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
52
data/POP/POP Series 6/8.ts
Normal file
52
data/POP/POP Series 6/8.ts
Normal file
@ -0,0 +1,52 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Riolu",
|
||||
},
|
||||
illustrator: "Kouki Saitou",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
447,
|
||||
],
|
||||
hp: 60,
|
||||
types: [
|
||||
"Fighting",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Fighting",
|
||||
],
|
||||
name: {
|
||||
en: "Wild Kick",
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If tails, this attack does nothing.",
|
||||
},
|
||||
damage: 30,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Psychic",
|
||||
value: "+10"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
58
data/POP/POP Series 6/9.ts
Normal file
58
data/POP/POP Series 6/9.ts
Normal file
@ -0,0 +1,58 @@
|
||||
import { Card } from '../../../interfaces'
|
||||
import Set from '../POP Series 6'
|
||||
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Pikachu",
|
||||
},
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
dexId: [
|
||||
25,
|
||||
],
|
||||
hp: 50,
|
||||
types: [
|
||||
"Lightning",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
"Lightning",
|
||||
"Colorless",
|
||||
],
|
||||
name: {
|
||||
en: "Spark",
|
||||
},
|
||||
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: 10,
|
||||
|
||||
},
|
||||
],
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
resistances: [
|
||||
{
|
||||
type: "Metal",
|
||||
value: "-20"
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
export default card
|
Reference in New Issue
Block a user