mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-07-29 19:19:50 +00:00
fix: Add Base serie translations (#161)
Signed-off-by: Avior <github@avior.me>
This commit is contained in:
@ -4,16 +4,20 @@ import Set from '../Team Rocket'
|
||||
const card: Card = {
|
||||
name: {
|
||||
en: "Rattata",
|
||||
fr: "Rattata"
|
||||
},
|
||||
|
||||
illustrator: "Atsuko Nishida",
|
||||
rarity: "Common",
|
||||
category: "Pokemon",
|
||||
|
||||
set: Set,
|
||||
|
||||
dexId: [
|
||||
19,
|
||||
],
|
||||
|
||||
hp: 40,
|
||||
|
||||
types: [
|
||||
"Colorless",
|
||||
],
|
||||
@ -22,15 +26,18 @@ const card: Card = {
|
||||
|
||||
abilities: [
|
||||
{
|
||||
type: "Poke-POWER",
|
||||
type: "Pokemon Power",
|
||||
name: {
|
||||
en: "Trickery",
|
||||
fr: "Ruse"
|
||||
},
|
||||
effect: {
|
||||
en: "Once during your turn (before your attack), you may switch 1 of your Prizes with the top card of your deck. This power can't be used if Rattata is Asleep, Confused, or Paralyzed.",
|
||||
fr: "Une fois pendant votre tour, (avant votre attaque), vous pouvez échanger 1 de vos récompenses avec la carte du sommet de votre deck. Ce pouvoir ne pant ête utilisé si Rattata est Endosmi, Confus ou Paralysé."
|
||||
},
|
||||
},
|
||||
],
|
||||
|
||||
attacks: [
|
||||
{
|
||||
cost: [
|
||||
@ -38,20 +45,24 @@ const card: Card = {
|
||||
],
|
||||
name: {
|
||||
en: "Quick Attack",
|
||||
fr: "Vive-attaque"
|
||||
},
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, this attack does 10 damage plus 10 more damage; if tails, this attack does 10 damage.",
|
||||
fr: "Lancez une pièce. Si c'est face, cette attaque inflige 10 dégâts plus 10 dégâts supplémentaires ; si c'est pile, certe attaque inflige 1o dégâts."
|
||||
},
|
||||
damage: 10,
|
||||
damage: "10+",
|
||||
|
||||
},
|
||||
],
|
||||
|
||||
weaknesses: [
|
||||
{
|
||||
type: "Fighting",
|
||||
value: "×2"
|
||||
},
|
||||
],
|
||||
|
||||
resistances: [
|
||||
{
|
||||
type: "Psychic",
|
||||
@ -59,9 +70,9 @@ const card: Card = {
|
||||
},
|
||||
],
|
||||
|
||||
|
||||
|
||||
|
||||
description: {
|
||||
fr: "Ses plats favoris sont les noix, les châtaignes, le fromage et le lait."
|
||||
}
|
||||
}
|
||||
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user