mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-16 09:29:19 +00:00
103
cards/xy/xy8/69.ts
Normal file
103
cards/xy/xy8/69.ts
Normal file
@ -0,0 +1,103 @@
|
||||
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: "xy8-69",
|
||||
localId: 69,
|
||||
|
||||
// Card informations
|
||||
name: {
|
||||
en: "Kirlia",
|
||||
fr: "Kirlia",
|
||||
},
|
||||
|
||||
hp: 80,
|
||||
|
||||
type: [
|
||||
Type.PSYCHIC,
|
||||
],
|
||||
|
||||
dexId: 281,
|
||||
|
||||
image: {
|
||||
low: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy8/69/low.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy8/69/low.png",
|
||||
},
|
||||
high: {
|
||||
en: "https://assets.tcgdex.net/en/xy/xy8/69/high.png",
|
||||
fr: "https://assets.tcgdex.net/fr/xy/xy8/69/high.png",
|
||||
},
|
||||
},
|
||||
|
||||
evolveFrom: {
|
||||
en: "Ralts",
|
||||
fr: "Tarsal",
|
||||
},
|
||||
|
||||
tags: [
|
||||
Tag.STAGE1,
|
||||
],
|
||||
|
||||
illustrator: {
|
||||
id: 39,
|
||||
name: "Sanosuke Sakuma"
|
||||
},
|
||||
|
||||
|
||||
|
||||
attacks: [{
|
||||
cost: [
|
||||
Type.PSYCHIC
|
||||
],
|
||||
name: {
|
||||
en: "Beckon",
|
||||
fr: "Invite",
|
||||
},
|
||||
text: {
|
||||
en: "Put a Supporter card from your discard pile into your hand.",
|
||||
fr: "Ajoutez une carte Supporter de votre pile de défausse à votre main.",
|
||||
},
|
||||
},{
|
||||
cost: [
|
||||
Type.COLORLESS,
|
||||
Type.COLORLESS
|
||||
],
|
||||
name: {
|
||||
en: "Quick Turn",
|
||||
fr: "Vif Retournement",
|
||||
},
|
||||
text: {
|
||||
en: "Flip 2 coins. This attack does 30 damage times the number of heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 30 dégâts multipliés par le nombre de côtés face.",
|
||||
},
|
||||
damage: 30
|
||||
}],
|
||||
|
||||
weaknesses: [{
|
||||
type: Type.PSYCHIC,
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
|
||||
|
||||
retreat: 1,
|
||||
|
||||
rarity: Rarity.Uncommon,
|
||||
|
||||
category: Category.POKEMON,
|
||||
|
||||
set: {
|
||||
name: "BREAKthrough",
|
||||
code: "xy8"
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user