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

72 lines
1.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 '../Unified Minds'
const card: Card = {
name: {
en: "Purrloin",
fr: "Chacripan",
es: "Purrloin",
it: "Purrloin",
pt: "Purrloin",
de: "Felilou"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
509,
],
hp: 70,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Cleaning Up",
fr: "Nettoyage",
es: "Purgar",
it: "Pulizie",
pt: "Limpar",
de: "Putzen"
},
effect: {
en: "Discard a Pokémon Tool card from 1 of your opponents Pokémon.",
fr: "Défaussez une carte Outil Pokémon de lun des Pokémon de votre adversaire.",
es: "Descarta 1 carta de Herramienta Pokémon de 1 de los Pokémon de tu rival.",
it: "Scarta una carta Oggetto Pokémon assegnata a uno dei Pokémon del tuo avversario.",
pt: "Descarte 1 carta de Ferramenta Pokémon de 1 dos Pokémon do seu oponente.",
de: "Lege 1 Pokémon-Ausrüstung von 1 Pokémon deines Gegners auf seinen Ablagestapel."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card