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

96 lines
2.2 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 '../Burning Shadows'
const card: Card = {
name: {
en: "Weavile",
fr: "Dimoret",
es: "Weavile",
it: "Weavile",
pt: "Weavile",
de: "Snibunna"
},
illustrator: "Satoshi Shirai",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
461,
],
hp: 90,
types: [
"Darkness",
],
evolveFrom: {
en: "Sneasel",
fr: "Farfuret",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Rule of Evil",
fr: "Règne Maléfique",
es: "Reino del Mal",
it: "Regno del Male",
pt: "Reinado do Mal",
de: "Herrschaft des Bösen"
},
effect: {
en: "This attack does 60 damage to each Pokémon that has an Ability (both yours and your opponents). (Dont apply Weakness and Resistance for Benched Pokémon.)",
fr: "Cette attaque inflige 60 dégâts à chacun des Pokémon ayant un talent (les vôtres et ceux de votre adversaire). (Nappliquez ni la Faiblesse ni la Résistance aux Pokémon de Banc.)",
es: "Este ataque hace 60 puntos de daño a cada Pokémon que tenga una habilidad (tanto tuyos como de tu rival). (No apliques Debilidad y Resistencia a los Pokémon en Banca).",
it: "Questo attacco infligge 60 danni a ogni Pokémon che abbia unabilità, sia tuoi che del tuo avversario. Ricorda che non puoi applicare debolezza e resistenza ai Pokémon in panchina.",
pt: "Este ataque causa 60 pontos de dano a cada um dos Pokémon que tiver uma Habilidade (seus e do seu oponente). (Não aplique Fraqueza e Resistência aos Pokémon no Banco.)",
de: "Diese Attacke fügt jedem Pokémon (deinen und denen deines Gegners), das eine Fähigkeit hat, 60 Schadenspunkte zu. (Wende Schwäche und Resistenz bei Pokémon auf der Bank nicht an.)"
},
},
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
es: "Cuchillada",
it: "Lacerazione",
pt: "Talho",
de: "Schlitzer"
},
damage: 70,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 0
}
export default card