1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 0d2a757cae
base DB
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-02-03 15:18:40 +01:00

93 lines
1.5 KiB
TypeScript

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: "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.png",
},
high: {
en: "https://assets.tcgdex.net/en/ex/ex15/92/high.png",
},
},
evolveFrom: {
en: "Vibrava",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 16,
name: "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.RareHoloEX,
category: Category.POKEMON,
set: {
name: "Dragon Frontiers",
code: "ex15"
}
}
export default card