1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-18 02:19:17 +00:00
Files
cards-database/data/Sword & Shield/Sword & Shield/127.ts

98 lines
2.1 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 '../Sword & Shield'
const card: Card = {
name: {
en: "Galarian Meowth",
fr: "Miaouss de Galar",
es: "Meowth de Galar",
it: "Meowth di Galar",
pt: "Meowth de Galar",
de: "Galar-Mauzi"
},
illustrator: "kirisAki",
rarity: "Common",
category: "Pokemon",
set: Set,
hp: 70,
types: [
"Metal",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Hone Claws",
fr: "Aiguisage",
es: "Afilagarras",
it: "Unghiaguzze",
pt: "Garras Afiadas",
de: "Klauenwetzer"
},
effect: {
en: "During your next turn, this Pokémons Slash attack does 60 more damage (before applying Weakness and Resistance).",
fr: "Pendant votre prochain tour, lattaque Tranche de ce Pokémon inflige 60 dégâts supplémentaires (avant application de la Faiblesse et de la Résistance).",
es: "Durante tu próximo turno, el ataque Cuchillada de este Pokémon hace 60 puntos de daño más (antes de aplicar Debilidad y Resistencia).",
it: "Durante il tuo prossimo turno, lattacco Lacerazione di questo Pokémon infligge 60 danni in più, prima di aver applicato debolezza e resistenza.",
pt: "Durante o seu próximo turno, o ataque Talho deste Pokémon causará 60 pontos de dano a mais (antes de aplicar Fraqueza e Resistência).",
de: "Während deines nächsten Zuges fügt die Attacke Schlitzer dieses Pokémon 60 Schadenspunkte mehr zu (bevor Schwäche und Resistenz verrechnet werden)."
},
},
{
cost: [
"Metal",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Grass",
value: "-30"
},
],
retreat: 1,
regulationMark: "D",
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
},
description: {
en: "Living with a savage, seafaring people has toughened this Pokémons body so much that parts of it have turned to iron."
}
}
export default card