mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
107
cards/xy/xy6/80.ts
Normal file
107
cards/xy/xy6/80.ts
Normal file
@ -0,0 +1,107 @@
|
||||
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: "xy6-80",
|
||||
localId: 80,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Unfezant",
|
||||
fr: "Déflaisan",
|
||||
},
|
||||
|
||||
hp: 130,
|
||||
|
||||
type: [
|
||||
Type.COLORLESS,
|
||||
],
|
||||
|
||||
dexId: 521,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy6/80/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy6/80/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy6/80/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy6/80/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Tranquill",
|
||||
fr: "Colombeau",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE2,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 49,
|
||||
name: "Shigenori Negishi"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-Attaque",
|
||||
},
|
||||
text: {
|
||||
en: "Flip a coin. If heads, this attack does 30 more damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 30 dégâts supplémentaires.",
|
||||
},
|
||||
damage: 30
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Strong Winds",
|
||||
fr: "Vents Tourbillonnants",
|
||||
},
|
||||
text: {
|
||||
en: "Shuffle all cards attached to each player's Pokémon into that player's deck.",
|
||||
fr: "Mélangez toutes les cartes attachées aux Pokémon de chaque joueur au deck de ce joueur.",
|
||||
},
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.LIGHTNING,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
resistances: [{
|
||||
type: Type.FIGHTING,
|
||||
value: "-20"
|
||||
}],
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "Roaring Skies",
|
||||
code: "xy6"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user