mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-05-22 08:09:54 +00:00
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
100 lines
2.1 KiB
TypeScript
100 lines
2.1 KiB
TypeScript
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émon's Slash attack does 60 more damage (before applying Weakness and Resistance).",
|
||
fr: "Pendant votre prochain tour, l'attaque 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, l'attacco 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émon's body so much that parts of it have turned to iron."
|
||
},
|
||
|
||
dexId: [52]
|
||
}
|
||
|
||
export default card
|