mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-30 19:40:48 +00:00
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
@ -4,24 +4,29 @@ import Set from '../Team Rocket'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Dark Wartortle",
|
||||
fr: "Carabaffe obscur"
|
||||
},
|
||||
|
||||
illustrator: "Kagemaru Himeno",
|
||||
rarity: "Uncommon",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
8,
|
||||
],
|
||||
|
||||
hp: 60,
|
||||
|
||||
types: [
|
||||
"Water",
|
||||
],
|
||||
|
||||
evolveFrom: {
|
||||
en: "Squirtle",
|
||||
},
|
||||
stage: "Stage1",
|
||||
|
||||
stage: "Stage1",
|
||||
|
||||
attacks: [
|
||||
{
|
||||
@ -30,11 +35,13 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Doubleslap",
|
||||
fr: "Double gifle"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip 2 coins. This attack does 10 damage times the number of heads.",
|
||||
fr: "Lancez 2 pièces. Cette attaque inflige 10 dégâts multipliés par le nombre de faces."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10×",
|
||||
|
||||
},
|
||||
{
|
||||
@ -44,13 +51,16 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Mirror Shell",
|
||||
fr: "Carapace miroir"
|
||||
},
|
||||
effect: {
|
||||
en: "If an attack does damage to Dark Wartortle during your opponent's next turn (even if Dark Wartortle is Knocked Out), Dark Wartortle attacks the Defending Pokémon for an equal amount of damage.",
|
||||
fr: "Si une attaque inflige des dégâts à Carabaffe obscur pendant le prochain tour de votre adversaire (même si Carabaffe obscur est K.O.), Carabaffe obscur attaque le Pokémon Défenseur avec une quantité de dégâts égale."
|
||||
},
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Lightning",
|
||||
@ -58,10 +68,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Il a très mauvais caractère et se cache dans sa carapace dès qu'il est de mauvaise humeur - ce qui est souvent le cas."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user