mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 19:32:11 +00:00
97 lines
1.6 KiB
TypeScript
97 lines
1.6 KiB
TypeScript
import Card from '../../../interfaces/Card'
|
||
import Type from '../../../interfaces/Type'
|
||
import Tag from '../../../interfaces/Tag'
|
||
import Rarity from '../../../interfaces/Rarity'
|
||
import AbilityType from '../../../interfaces/AbilityType'
|
||
import Category from '../../../interfaces/Category'
|
||
|
||
const card: Card = {
|
||
|
||
// ids
|
||
id: "hgss1-64",
|
||
localId: 64,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Girafarig",
|
||
fr: "Girafarig",
|
||
},
|
||
|
||
hp: 70,
|
||
|
||
type: [
|
||
Type.COLORLESS,
|
||
],
|
||
|
||
dexId: 203,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss1/64/low.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss1/64/low.png",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/hgss/hgss1/64/high.png",
|
||
fr: "https://assets.tcgdex.net/fr/hgss/hgss1/64/high.png",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {},
|
||
|
||
tags: [
|
||
Tag.BASIC,
|
||
],
|
||
|
||
illustrator: {
|
||
id: 37,
|
||
name: "Miki Tanaka"
|
||
},
|
||
|
||
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Show Off",
|
||
fr: "Crâneur",
|
||
},
|
||
text: {
|
||
en: "Search your deck for up to 2 basic Energy cards, show them to your opponent, and put them into your hand. Shuffle your deck afterward.",
|
||
fr: "Cherchez dans votre deck jusqu’à deux cartes Énergie de base, montrez-les à votre adversaire et ajoutez-les à votre main. Mélangez ensuite votre deck.",
|
||
},
|
||
},{
|
||
cost: [
|
||
Type.COLORLESS,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Psyshot",
|
||
fr: "Piqûre psy",
|
||
},
|
||
damage: 20
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.PSYCHIC,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.Common,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "HeartGold & SoulSilver",
|
||
code: "hgss1"
|
||
}
|
||
}
|
||
|
||
export default card
|
||
|