1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-20 02:59:18 +00:00

Updated PL 4 set

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
2020-05-04 15:27:22 +02:00
parent 2a42283d1d
commit 6a58422ae6
92 changed files with 6581 additions and 4998 deletions

View File

@ -4,95 +4,118 @@ import Tag from '@tcgdex/sdk/interfaces/Tag'
import Rarity from '@tcgdex/sdk/interfaces/Rarity'
import AbilityType from '@tcgdex/sdk/interfaces/AbilityType'
import Category from '@tcgdex/sdk/interfaces/Category'
import set from '../../../sets/pl/pl4'
const card: Card = {
// ids
// Card Global Informations
id: "pl4-24",
localId: 24,
// Card informations
name: {
en: "Pelipper",
},
hp: 90,
type: [
Type.WATER,
],
dexId: 279,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/24/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/24/high",
},
},
evolveFrom: {
en: "Wingull",
},
tags: [
Tag.STAGE1,
],
illustrator: "Miki Tanaka",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/24/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/24/high",
},
},
attacks: [{
cost: [
Type.WATER,
Type.COLORLESS
],
name: {
en: "Water Pulse",
// Card Pokémon Informations
evolveFrom: {
en: "Wingull",
},
dexId: 279,
type: [
Type.WATER,
],
attacks: [
{
cost: [
Type.WATER,
Type.COLORLESS,
],
name: {
en: "Water Pulse",
},
text: {
en: "The Defending Pokémon is now Asleep.",
},
damage: 30,
},
text: {
en: "The Defending Pokémon is now Asleep.",
{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS,
],
name: {
en: "Continuous Crush",
},
text: {
en: "Flip a coin until you get tails. For each heads, discard an Energy card attached to the Defending Pokémon.",
},
damage: 70,
},
damage: 30
},{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS,
Type.COLORLESS
],
name: {
en: "Continuous Crush",
],
weaknesses: [
{
type: Type.LIGHTNING,
value: "+20",
},
text: {
en: "Flip a coin until you get tails. For each heads, discard an Energy card attached to the Defending Pokémon.",
],
resistances: [
{
type: Type.FIGHTING,
value: "-20",
},
damage: 70
}],
],
weaknesses: [{
type: Type.LIGHTNING,
value: "+20"
}],
resistances: [{
type: Type.FIGHTING,
value: "-20"
}],
retreat: 2,
// Card Trainer/Energy informations
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card
export default card