1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-01 07:12:08 +00:00
Florian Bouillon ef2d099e6e
Fixed ! (#22)
Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-05-26 14:51:02 +02:00

74 lines
1.1 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 '../Steam Siege'
const card: Card = {
name: {
en: "Weavile",
fr: "Dimoret",
},
illustrator: "kawayoo",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
461,
],
hp: 90,
types: [
"Darkness",
],
evolveFrom: {
en: "Sneasel",
fr: "Farfuret",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Tear Away",
fr: "Arrachement",
},
effect: {
en: "As often as you like during your turn (before your attack), you may put a Pokémon Tool card attached to 1 of your Pokémon into your hand.",
fr: "Autant de fois que vous le voulez pendant votre tour (avant votre attaque), vous pouvez placer une carte Outil Pokémon attachée à lun de vos Pokémon dans votre main.",
},
},
],
attacks: [
{
cost: [
"Darkness",
"Colorless",
],
name: {
en: "Slash",
fr: "Tranche",
},
damage: 40,
},
],
weaknesses: [
{
type: "Fighting",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
}
export default card