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

86 lines
1.6 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Passimian",
fr: "Quartermac",
es: "Passimian",
it: "Passimian",
pt: "Passimian",
de: "Quartermak"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
766,
],
hp: 110,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Punch",
fr: "KoudPoing",
es: "Puño",
it: "Pugno",
pt: "Soco",
de: "Boxhieb"
},
damage: 30,
},
{
cost: [
"Fighting",
"Fighting",
],
name: {
en: "Intentional Grounding",
fr: "Mauvais Lancer",
es: "Saque de Banda",
it: "Punizione Volontaria",
pt: "Reversão de Lateral",
de: "Absichtlicher Fehlpass"
},
effect: {
en: "Discard a Pokémon Tool card from your hand. If you dont, this attack does nothing.",
fr: "Défaussez une carte Outil Pokémon de votre main. Sinon, cette attaque ne fait rien.",
es: "Descarta 1 carta de Herramienta Pokémon de tu mano. Si no lo haces, este ataque no hace nada.",
it: "Scarta una delle carte Oggetto Pokémon che hai in mano. Se non lo fai, questo attacco non ha effetto.",
pt: "Descarte 1 carta de Ferramenta Pokémon da sua mão. Se não fizer isto, este ataque não fará nada.",
de: "Lege 1 Pokémon-Ausrüstung aus deiner Hand auf deinen Ablagestapel. Wenn du das nicht machst, hat diese Attacke keine Auswirkungen."
},
damage: 90,
},
],
weaknesses: [
{
type: "Psychic",
value: "×2"
},
],
retreat: 1,
}
export default card