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,78 +4,95 @@ 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-65",
|
||||
|
||||
localId: 65,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Geodude",
|
||||
},
|
||||
|
||||
hp: 60,
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
dexId: 74,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/65/low",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/65/high",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {},
|
||||
|
||||
tags: [
|
||||
Tag.BASIC,
|
||||
],
|
||||
|
||||
illustrator: "Motofumi Fujiwara",
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set,
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/65/low",
|
||||
},
|
||||
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/pl/pl4/65/high",
|
||||
},
|
||||
|
||||
},
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.FIGHTING
|
||||
],
|
||||
name: {
|
||||
en: "Stone Barrage",
|
||||
// Card Pokémon Informations
|
||||
|
||||
dexId: 74,
|
||||
|
||||
|
||||
|
||||
type: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
Type.FIGHTING,
|
||||
],
|
||||
|
||||
name: {
|
||||
en: "Stone Barrage",
|
||||
},
|
||||
|
||||
text: {
|
||||
en: "Flip a coin until you get tails. This attack does 10 damage times the number of heads.",
|
||||
},
|
||||
|
||||
damage: "10x",
|
||||
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin until you get tails. This attack does 10 damage times the number of heads.",
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: Type.GRASS,
|
||||
|
||||
value: "+10",
|
||||
|
||||
},
|
||||
damage: 10
|
||||
}],
|
||||
],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.GRASS,
|
||||
value: "+10"
|
||||
}],
|
||||
resistances: [
|
||||
{
|
||||
type: Type.LIGHTNING,
|
||||
|
||||
resistances: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "-20"
|
||||
}],
|
||||
value: "-20",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
retreat: 2,
|
||||
|
||||
|
||||
// Card Trainer/Energy informations
|
||||
|
||||
rarity: Rarity.COMMON,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Arceus",
|
||||
code: "pl4"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
Reference in New Issue
Block a user