1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 20:32:11 +00:00
Florian Bouillon 384d5bd08d
Updated Cards to use new Ra
rities

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2020-05-04 14:00:12 +02:00

94 lines
1.4 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: "neo1-8",
localId: 8,
// Card informations
name: {
en: "Kingdra",
},
hp: 90,
type: [
Type.WATER,
],
dexId: 230,
image: {
low: {
en: "https://assets.tcgdex.net/en/neo/neo1/8/low",
},
high: {
en: "https://assets.tcgdex.net/en/neo/neo1/8/high",
},
},
evolveFrom: {
en: "Seadra",
},
tags: [
Tag.STAGE2,
],
illustrator: "Ken Sugimori",
attacks: [{
cost: [
Type.WATER,
Type.WATER,
Type.COLORLESS
],
name: {
en: "Agility",
},
text: {
en: "Flip a coin. If heads, during your opponent's next turn, prevent all effects of attacks, including damage, done to Kingdra.",
},
damage: 30
},{
cost: [
Type.WATER,
Type.WATER,
Type.WATER,
Type.WATER
],
name: {
en: "Dragon Tornado",
},
text: {
en: "If this attack doesn't Knock Out the Defending Pokémon, and if there are any Pokémon on your opponent's Bench, choose 1 of them and switch it with the Defending Pokémon.",
},
damage: 50
}],
rarity: Rarity.RARE,
category: Category.POKEMON,
set: {
name: "Neo Genesis",
code: "neo1"
}
}
export default card