1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +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

@ -3,23 +3,28 @@ import Set from '../POP Series 5'
const card: Card = {
name: {
en: "Pelipper (Delta Species)",
en: "Pelipper δ",
},
illustrator: "Mitsuhiro Arita",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
279,
],
hp: 70,
types: [
"Lightning",
],
evolveFrom: {
en: "Wingull",
},
stage: "Stage1",
abilities: [
@ -29,10 +34,11 @@ const card: Card = {
en: "Mist",
},
effect: {
en: "Any damage done to Pelipper by attacks from Stage 2 Evolved Pokémon (both yours and your opponent's) is reduced by 30 (after applying Weakness and Resistance).",
en: "Any damage done to Pelipper by attacks from Stage 2 Evolved Pokémon (both yours and your opponents) is reduced by 30 (after applying Weakness and Resistance).",
},
},
],
attacks: [
{
cost: [
@ -44,18 +50,19 @@ const card: Card = {
en: "Lightning Wing",
},
effect: {
en: "Does 10 damage to 1 of your Benched Pokémon. (Don't apply Weakness and Resistance for Benched Pokémon.)",
en: "Does 10 damage to 1 of your Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 50,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
type: "Lightning"
},
],
resistances: [
{
type: "Fighting",
@ -63,9 +70,14 @@ const card: Card = {
},
],
retreat: 0,
variants: {
normal: false,
reverse: false,
holo: true,
firstEdition: false
}
}
export default card