mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
103 lines
1.8 KiB
TypeScript
103 lines
1.8 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: "bw6-80",
|
||
localId: 80,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Aggron",
|
||
fr: "Galeking",
|
||
},
|
||
|
||
hp: 140,
|
||
|
||
type: [
|
||
Type.METAL,
|
||
],
|
||
|
||
dexId: 306,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw6/80/low",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw6/80/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/bw/bw6/80/high",
|
||
fr: "https://assets.tcgdex.net/fr/bw/bw6/80/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Lairon",
|
||
fr: "Galegon",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "Masakazu Fukuda",
|
||
|
||
abilities: [{
|
||
id: 153,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Toppling Wind",
|
||
fr: "Mistral",
|
||
},
|
||
text: {
|
||
en: "When you play this Pokémon from your hand to evolve 1 of your Pokémon, you may discard the top 3 cards of your opponent's deck.",
|
||
fr: "Lorsque vous jouez ce Pokémon de votre main pour faire évoluer 1 de vos Pokémon, vous pouvez défausser les 3 cartes du dessus du deck de votre adversaire.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.METAL,
|
||
Type.METAL,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Giga Horn",
|
||
fr: "Giga Corne",
|
||
},
|
||
text: {
|
||
en: "Flip 2 coins. If both of them are tails, this attack does nothing.",
|
||
fr: "Lancez 2 pièces. Si vous obtenez 2 côtés pile, cette attaque ne fait rien.",
|
||
},
|
||
damage: 90
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FIRE,
|
||
value: "×2"
|
||
}],
|
||
|
||
resistances: [{
|
||
type: Type.PSYCHIC,
|
||
value: "-20"
|
||
}],
|
||
|
||
retreat: 4,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Dragons Exalted",
|
||
code: "bw6"
|
||
}
|
||
}
|
||
|
||
export default card
|