1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-24 12:59:18 +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

View File

@ -0,0 +1,68 @@
import { Card } from '../../../interfaces'
import Set from '../Promo'
const card: Card = {
name: {
en: "Keldeo",
fr: "Keldeo",
},
illustrator: "5ban Graphics",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
647,
],
hp: 90,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Swords Dance",
fr: "Danse-Lames",
},
effect: {
en: "During your next turn, this Pokémon's Aqua Blade attack's base damage is 120.",
fr: "Pendant votre prochain tour, les dégâts de base de l'attaque Hydrolame de ce Pokémon sont de 120.",
},
},
{
cost: [
"Water",
"Water",
"Colorless",
],
name: {
en: "Aqua Blade",
fr: "Hydrolame",
},
damage: 60,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 1,
}
export default card