mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-13 08:19:17 +00:00
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
@ -4,35 +4,44 @@ import Set from '../Jungle'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dodrio",
|
||||
fr: "Dodrio"
|
||||
},
|
||||
|
||||
illustrator: "Mitsuhiro Arita",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
85,
|
||||
],
|
||||
|
||||
hp: 70,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Doduo",
|
||||
},
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Retreat Aid",
|
||||
fr: "Soutien de retraite"
|
||||
},
|
||||
effect: {
|
||||
en: "As long as Dodrio is Benched, pay 1 Colorless less to retreat your Active Pokémon.",
|
||||
fr: "Tant que Dodrio est sur le Banc, payez en moins pour faire battre en retraite votre Pokémon Actif."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -42,20 +51,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Rage",
|
||||
fr: "Frénésie"
|
||||
},
|
||||
effect: {
|
||||
en: "Does 10 damage plus 10 more damage for each damage counter on Dodrio.",
|
||||
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque marqueur de dégâts placé sur Dodrio."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Fighting",
|
||||
@ -63,9 +76,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il élabore des plans complexes avec ses trois cerveaux. Une de ses têtes reste toujours éveillée."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user