1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-06-14 08:39: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,23 +4,26 @@ import Set from '../Base Set'
const card: Card = {
name: {
en: "Onix",
fr: "Onix"
},
illustrator: "Ken Sugimori",
rarity: "Common",
category: "Pokemon",
set: Set,
dexId: [
95,
],
hp: 90,
types: [
"Fighting",
],
stage: "Basic",
attacks: [
{
cost: [
@ -28,6 +31,7 @@ const card: Card = {
],
name: {
en: "Rock Throw",
fr: "Jet-Pierres"
},
damage: 10,
@ -40,13 +44,16 @@ const card: Card = {
],
name: {
en: "Harden",
fr: "Armure"
},
effect: {
en: "During opponent's next turn, whenever 30 or less damage is done to Onix (after applying Weakness and Resistance), prevent that damage. (Any other effects of attacks still happen.)",
fr: "Pendant le prochain tour de votre adversaire, à chaque fois que 30 dégâts ou moins sont infligés à Onix (après application de la Faiblesse et de la Résistance), prévenez ces dégâts. (Tout autre effet ou attaque est toujours valide.)"
},
},
],
weaknesses: [
{
type: "Grass",
@ -54,10 +61,9 @@ const card: Card = {
},
],
description: {
fr: "Les parties en pierre de son corps durcissent pour devenir comme un diamant de couleur noire."
}
}
export default card