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:
@ -4,23 +4,26 @@ import Set from '../Base Set'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Chansey",
|
||||
fr: "Leveinard"
|
||||
},
|
||||
|
||||
illustrator: "Ken Sugimori",
|
||||
rarity: "Rare",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
113,
|
||||
],
|
||||
|
||||
hp: 120,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
|
||||
stage: "Basic",
|
||||
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -29,9 +32,11 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Scrunch",
|
||||
fr: "Compresse"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, prevent all damage done to Chansey during your opponent's next turn. (Any other effects of attacks still happen.)",
|
||||
fr: "Lancez une pièce. Si c'est face, prévenez tous les dégâts infligés à Leveinard pendant le prochain tour de votre adversaire. (Tout autre effet ou attaque est toujours valide.)"
|
||||
},
|
||||
|
||||
},
|
||||
@ -44,20 +49,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Double-edge",
|
||||
fr: "Damoclès"
|
||||
},
|
||||
effect: {
|
||||
en: "Chansey does 80 damage to itself.",
|
||||
fr: "Leveinard s'inflige 80 points de dégâts."
|
||||
},
|
||||
damage: 80,
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -65,9 +74,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Un Pokémon rare et difficile à capturer qui porte chance et bien-être à son possesseur."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user