1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-08-12 08:51:57 +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,84 +4,101 @@ 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-AR1",
localId: "AR1",
// Card informations
name: {
en: "Arceus",
fr: "Arceus",
},
hp: 70,
type: [
Type.DARKNESS,
],
dexId: 493,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/AR1/low",
fr: "https://assets.tcgdex.net/fr/pl/pl4/AR1/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/AR1/high",
fr: "https://assets.tcgdex.net/fr/pl/pl4/AR1/high",
},
},
evolveFrom: {},
tags: [
Tag.BASIC,
],
illustrator: "kawayoo",
rarity: Rarity.RARE,
category: Category.POKEMON,
set,
image: {
low: {
en: "https://assets.tcgdex.net/en/pl/pl4/AR1/low",
fr: "https://assets.tcgdex.net/fr/pl/pl4/AR1/low",
},
high: {
en: "https://assets.tcgdex.net/en/pl/pl4/AR1/high",
fr: "https://assets.tcgdex.net/fr/pl/pl4/AR1/high",
},
},
attacks: [{
cost: [
Type.DARKNESS,
Type.COLORLESS
],
name: {
en: "Prize Count",
fr: "Compteur de Récompense",
// Card Pokémon Informations
dexId: 493,
type: [
Type.DARKNESS,
],
attacks: [
{
cost: [
Type.DARKNESS,
Type.COLORLESS,
],
name: {
en: "Prize Count",
fr: "Compteur de Récompense",
},
text: {
en: "If you have more Prize cards left than your opponent, this attack does 20 damage plus 60 more damage.",
fr: "S'il vous reste plus de cartes Récompense qu'à votre adversaire, cette attaque inflige 20 dégâts plus 60 dégâts supplémentaires.",
},
damage: "20+",
},
text: {
en: "If you have more Prize cards left than your opponent, this attack does 20 damage plus 60 more damage.",
fr: "S'il vous reste plus de cartes Récompense qu'à votre adversaire, cette attaque inflige 20 dégâts plus 60 dégâts supplémentaires.",
],
weaknesses: [
{
type: Type.FIGHTING,
value: "×2",
},
damage: 20
}],
],
weaknesses: [{
type: Type.FIGHTING,
value: "×2"
}],
resistances: [
{
type: Type.PSYCHIC,
resistances: [{
type: Type.PSYCHIC,
value: "-20"
}],
value: "-20",
},
],
retreat: 1,
rarity: Rarity.RARE,
category: Category.POKEMON,
// Card Trainer/Energy informations
set: {
name: "Arceus",
code: "pl4"
}
}
export default card
export default card