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

82 lines
1.1 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: "Armaldo ex",
fr: "Armaldo ex"
},
illustrator: "Hikaru Koike",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
348,
],
hp: 160,
types: [
"Fighting",
],
evolveFrom: {
en: "Anorith",
},
stage: "Stage2",
attacks: [
{
cost: [
"Fighting",
"Colorless",
],
name: {
en: "Twin-blade",
fr: "Double épée"
},
effect: {
en: "Does 30 damage to each Defending Pokémon.",
fr: "Inflige 30 dégâts à chacun des Pokémon Défenseurs."
},
},
{
cost: [
"Fighting",
"Fighting",
"Colorless",
"Colorless",
"Colorless",
],
name: {
en: "Supersonic Claws",
fr: "Griffes supersoniques"
},
effect: {
en: "This attacks damage is not affected by Resistance.",
fr: "Les dégâts de cette attaque ne sont pas affectés par la Résistance."
},
damage: 80,
},
],
weaknesses: [
{
type: "Grass"
},
{
type: "Water"
},
],
suffix: "EX",
retreat: 3
}
export default card