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: "Kabuto",
fr: "Kabuto"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
140,
],
hp: 30,
types: [
"Fighting",
],
@ -22,15 +26,18 @@ const card: Card = {
abilities: [
{
type: "Poke-POWER",
type: "Pokemon Power",
name: {
en: "Kabuto Armor",
fr: "Armure Kabuto"
},
effect: {
en: "Whenever an attack (even your own) does damage to Kabuto (after applying Weakness and Resistance), that attack only does half the damage to Kabuto (rounded down to nearest 10). (Any other effects of attacks still happen.) This power stops working while Kabuto is Asleep, Confused, or Paralyzed.",
fr: "Chaque fois qu'une attaque (même la vôtre) inflige des dégâts à Kabuto (après application de la Faiblesse et de la Résistance), cette attaque inflige seulement la moitié des dégâts à Kabuto (arrondis à la dizaine la plus proche). (Tout autre effet ou attaque intervient toujours.) L'effet de ce pouvoir cesse lorsque Kabuto est Endormi, Confus ou Paralysé."
},
},
],
attacks: [
{
cost: [
@ -38,12 +45,14 @@ const card: Card = {
],
name: {
en: "Scratch",
fr: "Griffe"
},
damage: 10,
},
],
weaknesses: [
{
type: "Grass",
@ -51,10 +60,9 @@ const card: Card = {
},
],
description: {
fr: "Disparu depuis longtemps, il peut être réanimé génétiquement à partir d'anciens fossiles."
}
}
export default card