1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-25 12:22:14 +00:00
Florian Bouillon 8ef099273e
fix: Add E-Card French Translations (#166)
* fix: Add E-Card French Translations

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

* fix: Fixed Cards without rarity

Signed-off-by: Avior <florian.bouillon@delta-wings.net>
2021-11-22 19:07:35 +00:00

78 lines
1.4 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 '../Aquapolis'
const card: Card = {
name: {
en: "Dodrio",
fr: "Dodrio"
},
illustrator: "Yukiko Baba",
rarity: "Uncommon",
category: "Pokemon",
set: Set,
dexId: [
85,
],
hp: 70,
types: [
"Colorless",
],
evolveFrom: {
en: "Doduo",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Tri Attack",
fr: "Triplattaque"
},
effect: {
en: "Flip 3 coins. This attack does 10 damage times the number of heads.",
fr: "Lancez 3 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces."
},
damage: "10×",
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Peck Attack",
fr: "Prise de bec"
},
effect: {
en: "Flip 2 coins. If 1 of them is heads, this attack does 20 damage. If both are heads, this attack does 50 damage. If both are tails, the Defending Pokémon is now Confused.",
fr: "Lancez 2 pièces. S'il vous obtenez une face, cette attaque inflige 20 dégâts. Si vous obtenez 2 faces, cette attaque inflige 50 dégâts. Si c'est pile dans les deux cas, le Pokémon Défenseur est maintenant Confus."
},
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
resistances: [
{
type: "Fighting",
value: "-30"
},
],
}
export default card