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: "Omanyte",
fr: "Amonita"
},
illustrator: "Kagemaru Himeno",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
138,
],
hp: 40,
types: [
"Water",
],
@ -22,15 +26,18 @@ const card: Card = {
abilities: [
{
type: "Poke-POWER",
type: "Pokemon Power",
name: {
en: "Clairvoyance",
fr: "Clairvoyance"
},
effect: {
en: "Your opponent plays with his or her hand face up. This power stops working while Omanyte is Asleep, Confused, or Paralyzed.",
fr: "Votre adversaire joue avec sa main révélée. Ce pouvoir cesse de fonctionner lorsqu'Amonita est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
@ -38,14 +45,17 @@ const card: Card = {
],
name: {
en: "Water Gun",
fr: "Pistolet à O"
},
effect: {
en: "Does 10 damage plus 10 more damage for each Energy attached to Omanyte but not used to pay for this attack's Energy cost. You can't add more than 20 damage in this way.",
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Amonita en plus du coût en Énergie de cette attaque. Vous ne pouvez pas ajouter plus de 20 dégâts de cette façon."
},
damage: 10,
damage: "10+",
},
],
weaknesses: [
{
type: "Grass",
@ -53,10 +63,9 @@ const card: Card = {
},
],
description: {
fr: "Disparu depuis longtemps, il peut être réanimé génétiquement à partir d'anciens fossiles."
}
}
export default card