mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-25 12:22:14 +00:00
100 lines
1.9 KiB
TypeScript
100 lines
1.9 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: "xy5-110",
|
||
localId: 110,
|
||
|
||
// Card informations
|
||
name: {
|
||
en: "Flygon",
|
||
fr: "Libégon",
|
||
},
|
||
|
||
hp: 140,
|
||
|
||
type: [
|
||
Type.DRAGON,
|
||
],
|
||
|
||
dexId: 330,
|
||
|
||
image: {
|
||
low: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy5/110/low",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy5/110/low",
|
||
},
|
||
high: {
|
||
en: "https://assets.tcgdex.net/en/xy/xy5/110/high",
|
||
fr: "https://assets.tcgdex.net/fr/xy/xy5/110/high",
|
||
},
|
||
},
|
||
|
||
evolveFrom: {
|
||
en: "Vibrava",
|
||
fr: "Vibraninf",
|
||
},
|
||
|
||
tags: [
|
||
Tag.STAGE2,
|
||
],
|
||
|
||
illustrator: "kirisAki",
|
||
|
||
abilities: [{
|
||
id: 1306,
|
||
type: AbilityType.TALENT,
|
||
name: {
|
||
en: "Sand Flap",
|
||
fr: "Battement Ensablé",
|
||
},
|
||
text: {
|
||
en: "Once during your turn (before your attack), you may choose either player. That player shuffles his or her hand into his or her deck and draws 4 cards.",
|
||
fr: "Une seule fois pendant votre tour (avant votre attaque), vous pouvez choisir l'un des joueurs. Le joueur choisi mélange sa main avec son deck et pioche 4 cartes.",
|
||
}
|
||
}],
|
||
|
||
attacks: [{
|
||
cost: [
|
||
Type.GRASS,
|
||
Type.FIGHTING,
|
||
Type.COLORLESS
|
||
],
|
||
name: {
|
||
en: "Sand Tomb",
|
||
fr: "Tourbi-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 pendant le prochain tour de votre adversaire.",
|
||
},
|
||
damage: 80
|
||
}],
|
||
|
||
weaknesses: [{
|
||
type: Type.FAIRY,
|
||
value: "×2"
|
||
}],
|
||
|
||
|
||
|
||
retreat: 1,
|
||
|
||
rarity: Rarity.RARE,
|
||
|
||
category: Category.POKEMON,
|
||
|
||
set: {
|
||
name: "Primal Clash",
|
||
code: "xy5"
|
||
}
|
||
}
|
||
|
||
export default card
|