1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-19 10:49: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,88 +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-32",
localId: 32,
// Card informations
name: {
en: "Spiritomb",
},
hp: 60,
type: [
Type.DARKNESS,
],
dexId: 442,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/32/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/32/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "Aya Kusube",
abilities: [{
id: 293,
type: AbilityType.POKEBODY,
name: {
en: "Keystone Seal",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/32/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/32/high",
},
},
// Card Pokémon Informations
dexId: 442,
type: [
Type.DARKNESS,
],
abilities: [
{
type: AbilityType.POKEBODY,
name: {
en: "Keystone Seal",
},
text: {
en: "As long as Spiritomb is your Active Pokémon, each player can't play any Trainer cards from his or her hand.",
},
}
,
],
attacks: [
{
name: {
en: "Darkness Grace",
},
text: {
en: "Search your deck for a card that evolves from 1 of your Pokémon and put it onto that Pokémon. (This counts as evolving that Pokémon.) If you do, put 1 damage counter on Spiritomb. Shuffle your deck afterward.",
},
},
text: {
en: "As long as Spiritomb is your Active Pokémon, each player can't play any Trainer cards from his or her hand.",
}
}],
{
cost: [
Type.DARKNESS,
],
name: {
en: "Will-o'-the-wisp",
},
damage: 10,
attacks: [{
name: {
en: "Darkness Grace",
},
text: {
en: "Search your deck for a card that evolves from 1 of your Pokémon and put it onto that Pokémon. (This counts as evolving that Pokémon.) If you do, put 1 damage counter on Spiritomb. Shuffle your deck afterward.",
],
resistances: [
{
type: Type.COLORLESS,
value: "-20",
},
},{
cost: [
Type.DARKNESS
],
name: {
en: "Will-o'-the-wisp",
},
damage: 10
}],
],
retreat: 1,
// Card Trainer/Energy informations
resistances: [{
type: Type.COLORLESS,
value: "-20"
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Arceus",
code: "pl4"
}
}
export default card
export default card