1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-07-29 19:19:50 +00:00

Finished Complete Rework of the Database

This commit is contained in:
2021-02-24 16:56:26 +01:00
parent 8f9e953656
commit 9a1ae318f1
26038 changed files with 814437 additions and 1155588 deletions

72
data/EX/Dragon/92.ts Normal file
View File

@ -0,0 +1,72 @@
import { Card } from '../../../interfaces'
import Set from '../Dragon'
const card: Card = {
name: {
en: "Kingdra ex",
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
230,
],
hp: 150,
types: [
"Water",
],
evolveFrom: {
en: "Seadra",
},
suffix: "EX",
attacks: [
{
cost: [
"Water",
],
name: {
en: "Genetic Memory",
},
effect: {
en: "Use any attack from Kingdra ex's Basic Pokémon card or Stage 1 Evolution card. (Kingdra ex doesn't have to pay for that attack's Energy cost.)",
},
},
{
cost: [
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Hydrocannon",
},
effect: {
en: "Does 50 damage plus 20 more damage for each Water Energy attached to Kingdra ex but not used to pay for this attack's Energy cost. You can't add more than 40 damage in this way.",
},
damage: 50,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
{
type: "Lightning",
value: "×2"
},
],
}
export default card