1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-05-02 15:42:11 +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

71 lines
969 B
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Paras",
fr: "Paras"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
46,
],
hp: 60,
types: [
"Grass",
],
stage: "Basic",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Scratch",
fr: "Griffe"
},
damage: 10,
},
{
cost: [
"Grass",
"Grass",
],
name: {
en: "Mushroom Tackle",
fr: "Champi-charge"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Paralyzed.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Paralysé."
},
damage: 20,
},
],
weaknesses: [
{
type: "Fire",
value: "+10"
},
],
description: {
fr: "Des champignons appelés \"tochukaso\" poussent sur son dos. Ils évoluent avec le Paras hôte."
}
}
export default card