1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-26 12:52:13 +00:00
Florian Bouillon 2e18aa4aac
Sword & Shield Fixes (#84)
* some fixes

Signed-off-by: Avior <github@avior.me>

* Some more changes

Signed-off-by: Avior <github@avior.me>

* u

Signed-off-by: Avior <github@avior.me>

* continuing update

Signed-off-by: Avior <github@avior.me>

* Finished ?

Signed-off-by: Avior <github@avior.me>

* Removed files that were not meant to be

* Remoed even more files
2021-10-26 10:40:03 +02:00

101 lines
1.8 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Darkness Ablaze'
const card: Card = {
name: {
en: "Milotic",
fr: "Milobellus",
es: "Milotic",
it: "Milotic",
pt: "Milotic",
de: "Milotic"
},
illustrator: "AKIRA EGAWA",
rarity: "Rare",
category: "Pokemon",
set: Set,
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Feebas",
fr: "Barpau",
es: "Feebas",
it: "Feebas",
pt: "Feebas",
de: "Barschwa"
},
abilities: [
{
type: "Ability",
name: {
en: "Bright Heal",
fr: "Soin Lumineux",
es: "Cura Brillante",
it: "Lumicura",
pt: "Cura Brilhante",
de: "Helle Heilung"
},
effect: {
en: "Once during your turn, you may heal 20 damage from each of your Pokémon.",
fr: "Une fois pendant votre tour, vous pouvez soigner 20 dégâts de chacun de vos Pokémon.",
es: "Una vez durante tu turno, puedes curar 20 puntos de daño a cada uno de tus Pokémon.",
it: "Una sola volta durante il tuo turno, puoi curare ciascuno dei tuoi Pokémon da 20 danni.",
pt: "Uma vez durante o seu turno, você poderá curar 20 pontos de dano de cada um dos seus Pokémon.",
de: "Einmal während deines Zuges kannst du 20 Schadenspunkte bei jedem deiner Pokémon heilen."
},
},
],
attacks: [
{
cost: [
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Surf",
fr: "Surf",
es: "Surf",
it: "Surf",
pt: "Surfar",
de: "Surfer"
},
damage: 80,
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
retreat: 2,
regulationMark: "D",
variants: {
normal: false,
reverse: true,
holo: true,
firstEdition: false
},
stage: "Stage1",
description: {
en: "Milotic has provided inspiration to many artists. It has even been referred to as the most beautiful Pokémon of all."
}
}
export default card