mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-22 03:49:19 +00:00
Updated PL 4 set
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
This commit is contained in:
@ -4,91 +4,111 @@ 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-12",
|
||||
|
||||
localId: 12,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Zapdos G",
|
||||
en: "Zapdos",
|
||||
},
|
||||
|
||||
hp: 90,
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
dexId: 145,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/12/low",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/12/high",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: "Ryota Saito",
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/12/low",
|
||||
},
|
||||
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/12/high",
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Charge Beam",
|
||||
// Card Pokémon Informations
|
||||
|
||||
dexId: 145,
|
||||
|
||||
|
||||
|
||||
type: [
|
||||
Type.LIGHTNING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Charge Beam",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin. If heads, search your discard pile for an Energy card and attach it to Zapdos .",
|
||||
},
|
||||
|
||||
damage: 10,
|
||||
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, search your discard pile for an Energy card and attach it to Zapdos .",
|
||||
{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Lightning Strike",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "You may discard all Lightning Energy attached to Zapdos . If you do, this attack's base damage is 80 instead of 40.",
|
||||
},
|
||||
|
||||
damage: 40,
|
||||
|
||||
},
|
||||
damage: 10
|
||||
},{
|
||||
cost: [
|
||||
Type.LIGHTNING,
|
||||
Type.LIGHTNING,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Lightning Strike",
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
|
||||
value: "×2",
|
||||
|
||||
},
|
||||
text: {
|
||||
en: "You may discard all Lightning Energy attached to Zapdos . If you do, this attack's base damage is 80 instead of 40.",
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
|
||||
value: "-20",
|
||||
|
||||
},
|
||||
damage: 40
|
||||
}],
|
||||
],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
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
|
Reference in New Issue
Block a user