mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-04-23 03:12:10 +00:00
98 lines
1.4 KiB
TypeScript
98 lines
1.4 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: "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.png",
|
|
},
|
|
high: {
|
|
en: "https://assets.tcgdex.net/en/neo/neo1/8/high.png",
|
|
},
|
|
},
|
|
|
|
evolveFrom: {
|
|
en: "Seadra",
|
|
},
|
|
|
|
tags: [
|
|
Tag.STAGE2,
|
|
],
|
|
|
|
illustrator: {
|
|
id: 5,
|
|
name: "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
|
|
|