mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-01 15:12:10 +00:00
95 lines
1.6 KiB
TypeScript
95 lines
1.6 KiB
TypeScript
import Card from '@tcgdex/sdk/interfaces/Card'
|
|
import Type from '@tcgdex/sdk/interfaces/Type'
|
|
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'
|
|
|
|
const card: Card = {
|
|
|
|
// ids
|
|
id: "pl3-90",
|
|
localId: 90,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Beldum",
|
|
fr: "Terhal",
|
|
},
|
|
|
|
hp: 50,
|
|
|
|
type: [
|
|
Type.METAL,
|
|
],
|
|
|
|
dexId: 374,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/90/low",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/90/low",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/90/high",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/90/high",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {},
|
|
|
|
tags: [
|
|
Tag.BASIC,
|
|
],
|
|
|
|
illustrator: "Atsuko Nishida",
|
|
|
|
|
|
|
|
attacks: [{
|
|
cost: [
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Pit Search",
|
|
fr: "Recherche dans la fosse",
|
|
},
|
|
text: {
|
|
en: "Search your deck for a Stadium card, show it to your opponent, and put it into your hand. Shuffle your deck afterward.",
|
|
fr: "Choisissez dans votre deck une carte Stade, montrez-la à votre adversaire et placez-la dans votre main. Ensuite, mélangez votre deck.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.METAL
|
|
],
|
|
name: {
|
|
en: "Ram",
|
|
fr: "Collision",
|
|
},
|
|
damage: 10
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.FIRE,
|
|
value: "+10"
|
|
}],
|
|
|
|
resistances: [{
|
|
type: Type.PSYCHIC,
|
|
value: "-20"
|
|
}],
|
|
|
|
retreat: 2,
|
|
|
|
rarity: Rarity.COMMON,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Supreme Victors",
|
|
code: "pl3"
|
|
}
|
|
}
|
|
|
|
export default card
|