1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
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

83 lines
1.3 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Stormfront'
const card: Card = {
name: {
en: "Duskull",
fr: "Skélénox"
},
illustrator: "Kouki Saitou",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
355,
],
hp: 50,
types: [
"Psychic",
],
evolveFrom: {
fr: "Skélénox",
},
stage: "Basic",
attacks: [
{
cost: [
"Psychic",
],
name: {
en: "Silhouette",
fr: "Silhouette",
},
effect: {
en: "Put 1 damage counter on the Defending Pokémon. If the Defending Pokémon already has any damage counters on it, put 2 damage counters on that Pokémon instead.",
fr: "Placez 1 marqueur de dégât sur le Pokémon Défenseur. Si le Pokémon Défenseur possède déjà des marqueurs de dégât, placez sur ce Pokémon 2 marqueurs de dégât.",
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Will-o'-the-wisp",
fr: "Feu follet",
},
damage: 20,
},
],
weaknesses: [
{
type: "Darkness",
value: "+10"
},
],
resistances: [
{
type: "Colorless",
value: "-20"
},
],
retreat: 1,
description: {
fr: "Il poursuit assidûment sa proie, où qu'elle aille. Il n'abandonne sa traque qu'au lever du soleil."
}
}
export default card