1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-24 03:42:13 +00:00
Florian Bouillon dc4d1bd6cb
Fix HeartGold SoulSilver datas (#73)
* Update

Signed-off-by: Avior <github@avior.me>

* Update datas

Signed-off-by: Avior <github@avior.me>

* Finished fix

Signed-off-by: Avior <github@avior.me>

* Updated some more

Signed-off-by: Avior <florian.bouillon@delta-wings.net>

* Some more updates

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-09-29 21:43:33 +00:00

93 lines
1.9 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",
},
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",
},
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.",
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Feint Attack",
fr: "Feinte",
},
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.",
},
},
],
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