1
0
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:
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,16 +4,20 @@ import Set from '../Fossil'
const card: Card = {
name: {
en: "Tentacool",
fr: "Tentacool"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
72,
],
hp: 30,
types: [
"Water",
],
@ -22,15 +26,18 @@ const card: Card = {
abilities: [
{
type: "Poke-POWER",
type: "Pokemon Power",
name: {
en: "Cowardice",
fr: "Échappée"
},
effect: {
en: "At any time during your turn (before your attack), you may return Tentacool to your hand. (Discard all cards attached to Tentacool.) This power can't be used the turn you put Tentacool into play or if Tentacool is Asleep, Confused, or Paralyzed.",
fr: "À tout moment pendant votre tour (avant votre attaque), vous pouvez reprendre Tentacool dans votre main. (Défaussez toutes les cartes attachées à Tentacool.) Ce pouvoir ne peut être utilisé dans le tour où vous mettez Tentacool en jeu ou si Tentacool est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
@ -38,12 +45,14 @@ const card: Card = {
],
name: {
en: "Acid",
fr: "Urticos"
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
@ -51,10 +60,9 @@ const card: Card = {
},
],
description: {
fr: "Flottant au bord des côtes, les pêcheurs se font souvent arroser d'acide quand ils en accrochent un."
}
}
export default card