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

82 lines
2.3 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 '../Guardians Rising'
const card: Card = {
name: {
en: "Oricorio",
fr: "Plumeline",
es: "Oricorio",
it: "Oricorio",
pt: "Oricorio",
de: "Choreogel"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
741,
],
hp: 90,
types: [
"Psychic",
],
stage: "Basic",
abilities: [
{
type: "Ability",
name: {
en: "Vital Dance",
fr: "Danse Vitale",
es: "Danza Vital",
it: "Danza Vitale",
pt: "Dança Vital",
de: "Munterer Tanz"
},
effect: {
en: "When you play this Pokémon from your hand onto your Bench during your turn, you may search your deck for up to 2 basic Energy cards, reveal them, and put them into your hand. Then, shuffle your deck.",
fr: "Lorsque vous jouez ce Pokémon de votre main sur votre Banc pendant votre tour, vous pouvez chercher jusquà 2 cartes Énergie de base dans votre deck, les montrer et les ajouter à votre main. Mélangez ensuite votre deck.",
es: "Cuando juegues este Pokémon de tu mano a tu Banca durante tu turno, puedes buscar en tu baraja hasta 2 cartas de Energía Básica, enseñarlas y ponerlas en tu mano. Después, baraja las cartas de tu baraja.",
it: "Quando giochi questo Pokémon dalla tua mano e lo metti in panchina durante il tuo turno, puoi cercare nel tuo mazzo fino a due carte Energia base, mostrarle e aggiungerle a quelle che hai in mano. Poi rimischia le carte del tuo mazzo.",
pt: "Quando você joga este Pokémon da sua mão para o seu Banco durante a sua vez de jogar, você pode procurar por até 2 cartas de Energia básica no seu baralho, revelá-las e colocá-las na sua mão. Em seguida, embaralhe o seu baralho.",
de: "Wenn du dieses Pokémon während deines Zuges aus deiner Hand auf deine Bank spielst, kannst du dein Deck nach bis zu 2 Basis-Energiekarten durchsuchen, sie deinem Gegner zeigen und sie auf deine Hand nehmen. Mische anschließend dein Deck."
},
},
],
attacks: [
{
cost: [
"Psychic",
"Colorless",
],
name: {
en: "Casual Slap",
fr: "Gifle Amicale",
es: "Bofetada Casual",
it: "Sberletta",
pt: "Tapa Casual",
de: "Lässiger Klatscher"
},
damage: 30,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card