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

89 lines
1.5 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: "ex15-92",
localId: 92,
// Card informations
name: {
en: "Flygon ex δ",
},
hp: 150,
type: [
Type.PSYCHIC,
],
dexId: 330,
image: {
low: {
en: "https://assets.tcgdex.net/en/ex/ex15/92/low",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex15/92/high",
},
},
evolveFrom: {
en: "Vibrava",
},
tags: [
Tag.STAGE2,
],
illustrator: "Nakaoka",
abilities: [{
id: 275,
type: AbilityType.POKEBODY,
name: {
en: "Sand Damage",
},
text: {
en: "As long as Flygon ex is your Active Pokémon, put 1 damage counter on each of your opponent's Benched Basic Pokémon between turns. You can't use more than 1 Sand Damage Poké-Body between turns.",
}
}],
attacks: [{
cost: [
Type.PSYCHIC,
Type.PSYCHIC,
Type.COLORLESS
],
name: {
en: "Psychic Pulse",
},
text: {
en: "Does 10 damage to each of your opponent's Benched Pokémon that has any damage counters on it. (Don't apply Weakness and Resistance for Benched Pokémon.)",
},
damage: 80
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Dragon Frontiers",
code: "ex15"
}
}
export default card