1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon dc0dcff103
Added Sun & Moon for other languages
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-06-30 14:12:31 +02:00

96 lines
2.9 KiB
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 '../Crimson Invasion'
const card: Card = {
name: {
en: "Milotic",
fr: "Milobellus",
es: "Milotic",
it: "Milotic",
pt: "Milotic",
de: "Milotic"
},
illustrator: "Kagemaru Himeno",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
350,
],
hp: 120,
types: [
"Water",
],
evolveFrom: {
en: "Feebas",
fr: "Barpau",
},
stage: "Stage1",
attacks: [
{
cost: [
"Water",
],
name: {
en: "TLC",
fr: "Soins Dévoués",
es: "Ternura y Cuidado",
it: "TVB",
pt: "Amor e Carinho",
de: "Streicheleinheiten"
},
effect: {
en: "Shuffle 1 of your opponents Benched Pokémon that has any damage counters on it and all cards attached to it into their deck.",
fr: "Mélangez dans le deck de votre adversaire un de ses Pokémon de Banc ayant au moins un marqueur de dégâts et toutes les cartes qui lui sont attachées.",
es: "Pon 1 de los Pokémon en Banca de tu rival que tenga algún contador de daño sobre él y todas las cartas unidas a él en su baraja y barájalas todas.",
it: "Rimischia uno dei Pokémon in panchina del tuo avversario che abbia dei segnalini danno e tutte le carte a esso assegnate nel suo mazzo.",
pt: "Embaralhe 1 dos Pokémon no Banco do seu oponente que tiver algum contador de dano nele e todas as cartas ligadas a ele no baralho do seu oponente.",
de: "Mische 1 Pokémon auf der Bank deines Gegners, auf dem mindestens 1 Schadensmarke liegt, und alle an es angelegten Karten in sein Deck."
},
},
{
cost: [
"Water",
"Water",
"Colorless",
"Colorless",
],
name: {
en: "Ocean Cyclone",
fr: "Cyclone Océanique",
es: "Ciclón Oceánico",
it: "Ciclone Oceanico",
pt: "Ciclone Oceânico",
de: "Meeressturm"
},
effect: {
en: "This attack does 10 damage to each of your opponents Benched Pokémon. (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 10 dégâts à chacun des Pokémon de Banc de votre adversaire. (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 10 puntos de daño a cada uno de los Pokémon en Banca de tu rival. (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 10 danni a ciascun Pokémon nella panchina del tuo avversario. Ricorda che non puoi applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque causa 10 pontos de dano a cada um dos Pokémon no Banco do seu oponente (não aplique Fraqueza e Resistência aos Pokémon no Banco).",
de: "Diese Attacke fügt jedem Pokémon auf der Bank deines Gegners 10 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass",
value: "×2"
},
],
retreat: 2,
}
export default card