1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 00:29:19 +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,24 +4,29 @@ import Set from '../Fossil'
const card: Card = {
name: {
en: "Magneton",
fr: "Magneton"
},
illustrator: "Ken Sugimori",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
82,
],
hp: 80,
types: [
"Lightning",
],
evolveFrom: {
en: "Magnemite",
},
stage: "Stage1",
stage: "Stage1",
attacks: [
{
@ -31,9 +36,11 @@ const card: Card = {
],
name: {
en: "Sonicboom",
fr: "Sonicboom"
},
effect: {
en: "Don't apply Weakness and Resistance for this attack. (Any other effects that would happen after applying Weakness and Resistance still happen.)",
fr: "Ne pas appliquer la Faiblesse et la Résistance à cette attaque. (Tout autre effet se produisant après application de la Faiblesse et de la Résistance est toujours valide.)"
},
damage: 20,
@ -47,14 +54,17 @@ const card: Card = {
],
name: {
en: "Selfdestruct",
fr: "Destruction"
},
effect: {
en: "Does 20 damage to each Pokémon on each player's Bench. (Don't apply Weakness and Resistance for Benched Pokémon.) Magneton does 100 damage to itself.",
fr: "Inflige 20 dégâts à chacun des Pokémon du Banc de chaque joueur. (Ne pas appliquer la Faiblesse et la Résistance aux Pokémon du Banc.) Magneton s'inflige 100 dégâts."
},
damage: 100,
},
],
weaknesses: [
{
type: "Fighting",
@ -62,10 +72,9 @@ const card: Card = {
},
],
description: {
fr: "Constitué de Magneti reliés les uns aux autres, il apparaît lorsque le soleil brille."
}
}
export default card