1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +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

78 lines
1.1 KiB
TypeScript

import { Card } from '../../../interfaces'
import Set from '../Mysterious Treasures'
const card: Card = {
name: {
en: "Murkrow",
fr: "Cornèbre"
},
illustrator: "Atsuko Nishida",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
198,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
attacks: [
{
name: {
en: "Swarm",
fr: "Nuée"
},
effect: {
en: "Search your deck for Murkrow and put it onto your Bench. Shuffle your deck afterward.",
fr: "Cherchez Cornèbre dans votre deck et placez-le sur votre Banc. Ensuite, mélangez votre deck."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Hide Crowd",
fr: "Cache foule"
},
effect: {
en: "Switch Murkrow with 1 of your Benched Pokémon.",
fr: "Échangez Cornèbre avec 1 de vos Pokémon de Banc."
},
damage: 20,
},
],
weaknesses: [
{
type: "Lightning",
value: "+10"
},
],
resistances: [
{
type: "Fighting",
value: "-20"
},
],
description: {
fr: "On dit que rencontrer un Cornèbre la nuit est signe de mauvais augure."
}
}
export default card