1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-13 00:09:18 +00:00

fix: Add Base serie translations (#161)

Signed-off-by: Avior <github@avior.me>
This commit is contained in:
2021-11-12 17:07:41 +01:00
committed by GitHub
parent 3b8e87e284
commit ffdd3b4656
337 changed files with 4395 additions and 2387 deletions

View File

@ -4,24 +4,29 @@ import Set from '../Team Rocket'
const card: Card = {
name: {
en: "Dark Blastoise",
fr: "Tortank obscur"
},
illustrator: "Mitsuhiro Arita",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
9,
],
hp: 70,
types: [
"Water",
],
evolveFrom: {
en: "Wartortle",
},
stage: "Stage2",
stage: "Stage2",
attacks: [
{
@ -31,11 +36,13 @@ const card: Card = {
],
name: {
en: "Hydrocannon",
fr: "Canon à O"
},
effect: {
en: "Does 30 damage plus 20 more damage for each W Energy attached to Dark Blastoise but not used to pay for this attack. You can't add more than 40 damage in this way.",
fr: "Inflige 30 dégâts plus 20 dégâts supplémentaires pour chaque Énergie attachée à Tortank obscur en plus du coût de cette attaque. Vous ne pouvez ajouter plus de 40 dégâts de cette façon."
},
damage: 30,
damage: "30+",
},
{
@ -46,14 +53,17 @@ const card: Card = {
],
name: {
en: "Rocket Tackle",
fr: "Lance roquette"
},
effect: {
en: "Dark Blastoise does 10 damage to itself. Flip a coin. If heads, prevent all damage done to Dark Blastoise during your opponent's next turn. (Any other effects of attacks still happen.)",
fr: "Tortank obscur s'inflige 10 dégâts. Lancez une pièce. Si c'est face, prévenez tous les dégâts infligés à Tortank obscur pendant le prochain tour de votre adversaire. (Tous les autres effets dus à des attaques subsistent.)"
},
damage: 40,
},
],
weaknesses: [
{
type: "Lightning",
@ -61,10 +71,9 @@ const card: Card = {
},
],
description: {
fr: "Un Pokémon agressif qui s'attaque à tout ce qu'il voit."
}
}
export default card