1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 19:32:11 +00:00
Florian Bouillon df23371cb4
fix: Add most POP series French translations (#170)
* fix: Added most of the translations

Some translations aren't available or are user made without a card image depicted

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

* fix: Add sets French translations

Signed-off-by: Avior <github@avior.me>
2021-11-16 10:08:20 +01:00

76 lines
1.3 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 '../POP Series 1'
const card: Card = {
name: {
en: "Murkrow",
fr: "Cornèbre"
},
illustrator: "Ken Sugimori",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
198,
],
hp: 60,
types: [
"Darkness",
],
stage: "Basic",
abilities: [
{
type: "Poke-BODY",
name: {
en: "Insomnia",
fr: "Insomnie"
},
effect: {
en: "Murkrow cant be Asleep.",
fr: "Cornèbre ne peut pas être Endormi."
},
},
],
attacks: [
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Feint Attack",
fr: "Feinte"
},
effect: {
en: "Choose 1 of your opponents Pokémon. This attack does 20 damage to that Pokémon. This attacks damage isnt affected by Weakness, Resistance, Poké-Powers, Poké-Bodies, or any other effects on that Pokémon.",
fr: "Choisissez un des Pokémon de votre adversaire. Cette attaque lui inflige 20 dégâts. Les dégâts de cette attaque ne sont pas affectés par la Faiblesse, la Résistance, les Poké-Powers, les Poké-Bodies ou tout autre effet."
},
},
],
weaknesses: [
{
type: "Fighting"
},
],
resistances: [
{
type: "Psychic",
value: "-30"
},
],
retreat: 1
}
export default card