1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-28 22:02:15 +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

88 lines
1.7 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: "Naoki Saito",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
741,
],
hp: 90,
types: [
"Lightning",
],
stage: "Basic",
attacks: [
{
cost: [
"Lightning",
],
name: {
en: "Feather Dance",
fr: "Danse-Plume",
es: "Danza Pluma",
it: "Danzadipiume",
pt: "Dança das Penas",
de: "Daunenreigen"
},
effect: {
en: "During your next turn, this Pokémons Pom-Pom Punch attacks base damage is 100.",
fr: "Pendant votre prochain tour, les dégâts de base de lattaque Poing Pom-Pom de ce Pokémon sont de 100.",
es: "Durante tu próximo turno, el daño básico del ataque Puñetazo Animado de este Pokémon es de 100.",
it: "Durante il tuo prossimo turno, i danni base dellattacco Pugno Cheerdance di questo Pokémon sono 100.",
pt: "Durante a sua próxima vez de jogar, o dano base do ataque Soco de Pompom deste Pokémon será 100.",
de: "Während deines nächsten Zuges beträgt der Grundschaden der Attacke Cheerleading-Hieb dieses Pokémon 100 Schadenspunkte."
},
},
{
cost: [
"Lightning",
],
name: {
en: "Pom-Pom Punch",
fr: "Poing Pom-Pom",
es: "Puñetazo Animado",
it: "Pugno Cheerdance",
pt: "Soco de Pompom",
de: "Cheerleading-Hieb"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Metal",
value: "-20"
},
],
retreat: 1,
}
export default card