1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-23 04:19:18 +00:00
Files
cards-database/data/Diamond & Pearl/Diamond & Pearl/40.ts
Florian Bouillon d4be6fa84f fix: Add Diamond & Pearl French translations (#179)
* fix: Add the two first sets

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

* fix: Add DP, DP Black Star and Mysterious Treasures

Signed-off-by: Avior <github@avior.me>
2021-11-22 18:11:03 +00:00

88 lines
1.4 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 '../Diamond & Pearl'
const card: Card = {
name: {
en: "Weavile",
fr: "Dimoret",
},
illustrator: "Naoyo Kimura",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
461,
],
hp: 80,
types: [
"Darkness",
],
evolveFrom: {
en: "Sneasel",
fr: "Farfuret",
},
stage: "Stage1",
attacks: [
{
cost: [
"Darkness",
],
name: {
en: "Nasty Plot",
fr: "Machination",
},
effect: {
en: "Search your deck for any 1 card and put it into your hand. Shuffle your deck afterward.",
fr: "Choisissez dans votre deck n'importe quelle carte et placez-la dans votre main. Ensuite, mélangez votre deck.",
},
},
{
cost: [
"Darkness",
"Darkness",
"Darkness",
],
name: {
en: "Dark Pulse",
fr: "Vibrobscur",
},
effect: {
en: "Does 10 damage times the total amount of Darkness Energy attached to all of your Pokémon.",
fr: "Inflige 10 dégâts multipliés par le nombre d'Énergies Darkness attachées à tous vos Pokémon.",
},
damage: "10×",
},
],
weaknesses: [
{
type: "Fighting",
value: "+20"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 1,
description: {
fr: "Ils vivent par groupe de 4 ou 5 en région froide et chassent de façon très organisée."
}
}
export default card