1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-24 00:49:55 +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

89 lines
1.5 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 '../Sun & Moon'
const card: Card = {
name: {
en: "Carvanha",
fr: "Carvanha",
es: "Carvanha",
it: "Carvanha",
pt: "Carvanha",
de: "Kanivanha"
},
illustrator: "Sumiyoshi Kizuki",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
318,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Gnaw Through",
fr: "Grignotage",
es: "Roedura Perforante",
it: "Rosicchiadentro",
pt: "Roída Interrupta",
de: "Durchnagen"
},
effect: {
en: "Discard all Pokémon Tool cards from your opponents Active Pokémon.",
fr: "Défaussez toutes les cartes Outil Pokémon du Pokémon Actif de votre adversaire.",
es: "Descarta todas las cartas de Herramienta Pokémon del Pokémon Activo de tu rival.",
it: "Scarta tutte le carte Oggetto Pokémon assegnate al Pokémon attivo del tuo avversario.",
pt: "Descarte todas as cartas de Ferramenta Pokémon do Pokémon Ativo do seu oponente.",
de: "Lege alle Pokémon-Ausrüstungen vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Bite",
fr: "Morsure",
es: "Mordisco",
it: "Morso",
pt: "Mordida",
de: "Biss"
},
damage: 20,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card