mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-02 07:32:11 +00:00
101 lines
1.6 KiB
TypeScript
101 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: "pl3-59",
|
|
localId: 59,
|
|
|
|
// Card informations
|
|
name: {
|
|
en: "Gabite",
|
|
fr: "Carmache",
|
|
},
|
|
|
|
hp: 80,
|
|
|
|
type: [
|
|
Type.COLORLESS,
|
|
],
|
|
|
|
dexId: 444,
|
|
|
|
image: {
|
|
low: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/59/low.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/59/low.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/pl/pl3/59/high.png",
|
|
fr: "https://assets.tcgdex.net/fr/pl/pl3/59/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Gible",
|
|
fr: "Griknot",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE1,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 18,
|
|
name: "Tomokazu Komiya"
|
|
},
|
|
|
|
|
|
|
|
attacks: [{
|
|
name: {
|
|
en: "Healing Scale",
|
|
fr: "Écaille guérisseuse",
|
|
},
|
|
text: {
|
|
en: "Remove 1 damage counter from each of your Pokémon.",
|
|
fr: "Retirez à chacun de vos Pokémon 1 marqueur de dégât.",
|
|
},
|
|
},{
|
|
cost: [
|
|
Type.COLORLESS,
|
|
Type.COLORLESS
|
|
],
|
|
name: {
|
|
en: "Sand Tomb",
|
|
fr: "Tombe de sable",
|
|
},
|
|
text: {
|
|
en: "The Defending Pokémon can't retreat during your opponent's next turn.",
|
|
fr: "Le Pokémon Défenseur ne peut pas battre en retraite lors du prochain tour de votre adversaire.",
|
|
},
|
|
damage: 30
|
|
}],
|
|
|
|
weaknesses: [{
|
|
type: Type.COLORLESS,
|
|
value: "+20"
|
|
}],
|
|
|
|
|
|
|
|
retreat: 1,
|
|
|
|
rarity: Rarity.Uncommon,
|
|
|
|
category: Category.POKEMON,
|
|
|
|
set: {
|
|
name: "Supreme Victors",
|
|
code: "pl3"
|
|
}
|
|
}
|
|
|
|
export default card
|
|
|