1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 11:22:10 +00:00
Florian Bouillon ffdd3b4656
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
2021-11-12 17:07:41 +01:00

80 lines
1.7 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 '../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",
attacks: [
{
cost: [
"Water",
"Water",
],
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+",
},
{
cost: [
"Water",
"Colorless",
"Colorless",
],
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",
value: "×2"
},
],
description: {
fr: "Un Pokémon agressif qui s'attaque à tout ce qu'il voit."
}
}
export default card