1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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.3 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: "ecard1-43",
localId: 43,
// Card informations
name: {
en: "Dragonite",
},
hp: 100,
type: [
Type.COLORLESS,
],
dexId: 149,
image: {
low: {
en: "https://assets.tcgdex.net/en/ecard/ecard1/43/low.png",
},
high: {
en: "https://assets.tcgdex.net/en/ecard/ecard1/43/high.png",
},
},
evolveFrom: {
en: "Dragonair",
},
tags: [
Tag.STAGE2,
],
illustrator: {
id: 0,
name: "Kagemaru Himeno"
},
abilities: [{
id: 343,
type: AbilityType.POKEPOWER,
name: {
en: "Tailwind",
},
text: {
en: "Once during your turn (before you attack), if Dragonite is on your Bench, you may reduce your Active Pokémon's Retreat cost to 0.",
}
}],
attacks: [{
cost: [
Type.WATER,
Type.LIGHTNING,
Type.FIGHTING
],
name: {
en: "Dragon Tail",
},
text: {
en: "Flip 2 coins. This attack does 40 damage times the number of heads.",
},
damage: 40
}],
rarity: Rarity.Rare,
category: Category.POKEMON,
set: {
name: "Expedition Base Set",
code: "ecard1"
}
}
export default card