1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 6ca1ae94ed
Updated Cards to use new Rarities
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 13:58:48 +02:00

103 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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