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

91 lines
2.2 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 '../Shining Legends'
const card: Card = {
name: {
en: "Carnivine",
fr: "Vortente",
es: "Carnivine",
it: "Carnivine",
pt: "Carnivine",
de: "Venuflibis"
},
illustrator: "Tomokazu Komiya",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
455,
],
hp: 100,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Grass",
],
name: {
en: "Flick Poison",
fr: "Pichenette de Poison",
es: "Sacudida de Veneno",
it: "Velenogiro",
pt: "Salpicar Veneno",
de: "Springendes Gift"
},
effect: {
en: "Switch 1 of your opponents Benched Pokémon with their Active Pokémon. The new Active Pokémon is now Poisoned.",
fr: "Échangez lun des Pokémon de Banc de votre adversaire avec son Pokémon Actif. Le nouveau Pokémon Actif est maintenant Empoisonné.",
es: "Cambia 1 de los Pokémon en Banca de tu rival por su Pokémon Activo. El nuevo Pokémon Activo pasa a estar Envenenado.",
it: "Scambia uno dei Pokémon nella panchina del tuo avversario con il suo Pokémon attivo. Il nuovo Pokémon attivo viene avvelenato.",
pt: "Troque 1 dos Pokémon no Banco do seu oponente pelo Pokémon Ativo dele(a). O novo Pokémon Ativo agora está Envenenado.",
de: "Tausche 1 Pokémon auf der Bank deines Gegners gegen sein Aktives Pokémon aus. Das neue Aktive Pokémon ist jetzt vergiftet."
},
},
{
cost: [
"Grass",
"Colorless",
],
name: {
en: "Crunch",
fr: "Mâchouille",
es: "Triturar",
it: "Sgranocchio",
pt: "Mastigada",
de: "Knirscher"
},
effect: {
en: "Discard an Energy from your opponents Active Pokémon.",
fr: "Défaussez une Énergie du Pokémon Actif de votre adversaire.",
es: "Descarta 1 Energía del Pokémon Activo de tu rival.",
it: "Scarta unEnergia assegnata al Pokémon attivo del tuo avversario.",
pt: "Descarte 1 Energia do Pokémon Ativo do seu oponente.",
de: "Lege 1 Energie vom Aktiven Pokémon deines Gegners auf seinen Ablagestapel."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
retreat: 2,
}
export default card