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 '../Fossil'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dragonite",
|
||||
fr: "Dracolosse"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
149,
|
||||
],
|
||||
|
||||
hp: 100,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Dragonair",
|
||||
},
|
||||
|
||||
stage: "Stage2",
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Step In",
|
||||
fr: "Intervention"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before you attack) if Dragonite is on your Bench, you may switch it with your Active Pokémon.",
|
||||
fr: "Une seule fois pendant votre tour (avant votre attaque), si Dracolosse est sur votre Banc, vous pouvez l'échanger avec votre Pokémon Actif."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -43,11 +52,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Slam",
|
||||
fr: "Souplesse"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 40 damage times the number of heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 40 dégâts multipliés par le nombre de faces."
|
||||
},
|
||||
damage: 40,
|
||||
damage: "40×",
|
||||
|
||||
},
|
||||
],
|
||||
@ -59,9 +70,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un Pokémon marin extrêmement rare. On dit qu'il est aussi intelligent que l'homme."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user