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,88 +4,110 @@ 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-97",
|
||||
|
||||
localId: 97,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Gengar",
|
||||
en: "Gengar LV. X",
|
||||
},
|
||||
|
||||
hp: 140,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 94,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/97/low",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/97/high",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.LEVELUP,
|
||||
],
|
||||
|
||||
illustrator: "Shizurow",
|
||||
|
||||
abilities: [{
|
||||
id: 184,
|
||||
type: AbilityType.POKEPOWER,
|
||||
name: {
|
||||
en: "Level-Down",
|
||||
rarity: Rarity.RARE,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/97/low",
|
||||
},
|
||||
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/97/high",
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
|
||||
// Card Pokémon Informations
|
||||
|
||||
dexId: 94,
|
||||
|
||||
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: AbilityType.POKEPOWER,
|
||||
|
||||
name: {
|
||||
en: "Level-Down",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may choose 1 of your opponent's Pokémon LV.X. Remove the Level-Up card from that Pokémon and have your opponent shuffle that card into his or her deck. This power can't be used if Gengar is affected by a Special Condition.",
|
||||
},
|
||||
|
||||
}
|
||||
,
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Compound Pain",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "This attack does 30 damage to each of your opponent's Pokémon that already has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
},
|
||||
|
||||
|
||||
},
|
||||
text: {
|
||||
en: "Once during your turn (before your attack), you may choose 1 of your opponent's Pokémon LV.X. Remove the Level-Up card from that Pokémon and have your opponent shuffle that card into his or her deck. This power can't be used if Gengar is affected by a Special Condition.",
|
||||
}
|
||||
}],
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.DARKNESS,
|
||||
|
||||
value: "×2",
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC,
|
||||
Type.PSYCHIC,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Compound Pain",
|
||||
},
|
||||
text: {
|
||||
en: "This attack does 30 damage to each of your opponent's Pokémon that already has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: Type.COLORLESS,
|
||||
|
||||
value: "-20",
|
||||
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.DARKNESS,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.COLORLESS,
|
||||
value: "-20"
|
||||
}],
|
||||
],
|
||||
|
||||
|
||||
|
||||
rarity: Rarity.RARE,
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Arceus",
|
||||
code: "pl4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
Reference in New Issue
Block a user