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,23 +4,26 @@ import Set from '../Fossil'
const card: Card = {
name: {
en: "Lapras",
fr: "Lokhlass"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
131,
],
hp: 80,
types: [
"Water",
],
stage: "Basic",
attacks: [
{
cost: [
@ -28,11 +31,13 @@ const card: Card = {
],
name: {
en: "Water Gun",
fr: "Pistolet à O"
},
effect: {
en: "Does 10 damage plus 10 more damage for each Energy attached to Lapras but not used to pay for this attack's Energy cost. You can't add more than 20 damage this way.",
fr: "Inflige 10 dégâts plus 10 dégâts supplémentaires pour chaque Énergie attachée à Lokhlass 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+",
},
{
@ -42,14 +47,17 @@ const card: Card = {
],
name: {
en: "Confuse Ray",
fr: "Onde folie"
},
effect: {
en: "Flip a coin. If heads, the Defending Pokémon is now Confused.",
fr: "Lancez une pièce. Si c'est face, le Pokémon Défenseur est maintenant Confus."
},
damage: 10,
},
],
weaknesses: [
{
type: "Lightning",
@ -57,10 +65,9 @@ const card: Card = {
},
],
description: {
fr: "Ce Pokémon en voie d'extinction peut transporter des passagers sur son dos par-delà les océans."
}
}
export default card