1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 04:12:11 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

98 lines
2.5 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 '../Undaunted'
const card: Card = {
name: {
en: "Weavile",
fr: "Dimoret",
de: "Snibunna"
},
illustrator: "Aya Kusube",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
461,
],
hp: 80,
types: [
"Darkness",
],
evolveFrom: {
en: "Sneasel",
fr: "Farfuret",
},
stage: "Stage1",
abilities: [
{
type: "Poke-POWER",
name: {
en: "Claw Snag",
fr: "Griffentaille",
de: "Klauengriff"
},
effect: {
en: "Once during your turn, when you play Weavile from your hand to evolve 1 of your Pokémon, you may look at your opponents hand. Choose a card from your opponents hand and discard it.",
fr: "Une seule fois pendant votre tour, lorsque vous jouez Dimoret de votre main pour faire évoluer lun de vos Pokémon, vous pouvez demander à voir la main de votre adversaire. Choisissez une carte dans la main de votre adversaire et défaussez-la.",
de: "Einmal während deines Zuges, wenn du Snibunna von deiner Hand spielst, um 1 deiner Pokémon zu entwickeln, darfst du dir die Handkarten deines Gegners anschauen. Wähle 1 Karte von der Hand deines Gegners und lege sie auf seinen Ablagestapel."
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Feint Attack",
fr: "Feinte",
de: "Finte"
},
effect: {
en: "Choose 1 of your opponents Pokémon. This attack does 30 damage to that Pokémon. This attacks damage isnt affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
fr: "Choisissez lun des Pokémon de votre adversaire. Cette attaque inflige 30 dégâts à ce Pokémon. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance, les Poké-Powers et les Poké-Bodies ou tout autre effet en action sur ce Pokémon.",
de: "Wähle 1 Pokémon deines Gegners. Dieser Angriff fügt dem gewählten Pokémon 30 Schadenspunkte zu. Schwäche, Resistenz, Poké-Power, Poké-Body und alle anderen Effekte auf dem gewählten Pokémon haben keine Auswirkungen auf die Schadenspunkte dieses Angriffs."
},
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 0,
description: {
en: "It lives in snowy regions. It carves patterns in trees with its claws as a signal to others."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card