1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12: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

78 lines
1.8 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 '../Base Set'
const card: Card = {
name: {
en: "Blastoise",
fr: "Tortank"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
9,
],
hp: 100,
types: [
"Water",
],
evolveFrom: {
en: "Wartortle",
},
stage: "Stage2",
abilities: [
{
type: "Pokemon Power",
name: {
en: "Rain Dance",
fr: "Danse de la pluie"
},
effect: {
en: "As often as you like during your turn (before your attack), you may attach 1 Water Energy Card to 1 of your Water Pokémon. (This doesn't use up your 1 Energy card attachment for the turn.) This power can't be used if Blastoise is Asleep, Confused, or Paralyzed.",
fr: "Aussi souvent que vous le souhaitez pendant votre tour (avant votre attaque), vous pouvez attacher 1 carte Énergie à 1 de vos Pokémon (En plus de la carte Énergie que vous pouvez attacher normalement.) Ce pouvoir ne peut être utilisé si Tortank est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
"Water",
"Water",
"Water",
],
name: {
en: "Hydro Pump",
fr: "Hydrocanon"
},
effect: {
en: "Does 40 damage plus 10 more damage for each attached Water Energy attached to Blastoise but not used to pay for this attack's Energy cost. Extra Water Energy after the 2nd doesn't count.",
fr: "Inflige 40 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Tortank en plus du coût en Énergie de cette attaque. Les Énergies supplémentaires après la seconde ne comptent pas."
},
damage: "40+",
},
],
weaknesses: [
{
type: "Lightning",
value: "×2"
},
],
description: {
fr: "Un Pokémon brutal armé de canons hydrauliques. Ses puissants jets d'eau sont dévastateurs."
}
}
export default card