mirror of
https://github.com/tcgdex/cards-database.git
synced 2025-06-17 18:09:19 +00:00
Sword & Shield Fixes (#84)
* some fixes Signed-off-by: Avior <github@avior.me> * Some more changes Signed-off-by: Avior <github@avior.me> * u Signed-off-by: Avior <github@avior.me> * continuing update Signed-off-by: Avior <github@avior.me> * Finished ? Signed-off-by: Avior <github@avior.me> * Removed files that were not meant to be * Remoed even more files
This commit is contained in:
@ -6,11 +6,15 @@ const card: Card = {
|
||||
|
||||
name: {
|
||||
en: "Snorlax",
|
||||
fr: "Ronflex"
|
||||
fr: "Ronflex",
|
||||
es: "Snorlax",
|
||||
it: "Snorlax",
|
||||
pt: "Snorlax",
|
||||
de: "Relaxo"
|
||||
},
|
||||
|
||||
illustrator: "Narumi Sato",
|
||||
rarity: "Common",
|
||||
rarity: "None",
|
||||
category: "Pokemon",
|
||||
hp: 130,
|
||||
types: ["Colorless"],
|
||||
@ -20,24 +24,40 @@ const card: Card = {
|
||||
|
||||
name: {
|
||||
en: "Gormandize",
|
||||
fr: "Goinfrerie"
|
||||
fr: "Goinfrerie",
|
||||
es: "Glotonear",
|
||||
it: "Rimpinzarsi",
|
||||
pt: "Gormandize",
|
||||
de: "Schlemmen"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Once during your turn, if this Pokémon is in the Active Spot, you may draw cards until you have 7 cards in your hand. If you use this Ability, your turn ends.",
|
||||
fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez piocher des cartes jusqu’à en avoir 7 en main. Si vous utilisez ce talent, votre tour se termine."
|
||||
fr: "Une fois pendant votre tour, si ce Pokémon est sur le Poste Actif, vous pouvez piocher des cartes jusqu'à en avoir 7 en main. Si vous utilisez ce talent, votre tour se termine.",
|
||||
es: "Una vez durante tu turno, si este Pokémon está en el Puesto Activo, puedes robar cartas hasta que tengas 7 cartas en tu mano. Si usas esta habilidad, tu turno termina.",
|
||||
it: "Una sola volta durante il tuo turno, se questo Pokémon è in posizione attiva, puoi pescare fino ad avere sette carte in mano. Se usi questa abilità, il tuo turno finisce.",
|
||||
pt: "Once during your turn, if this Pokémon is in the Active Spot, you may draw cards until you have 7 cards in your hand. If you use this Ability, your turn ends.",
|
||||
de: "Einmal während deines Zuges, wenn dieses Pokémon in der Aktiven Position ist, kannst du so lange Karten ziehen, bis du 7 Karten auf deiner Hand hast. Wenn du diese Fähigkeit einsetzt, endet dein Zug."
|
||||
}
|
||||
}],
|
||||
|
||||
attacks: [{
|
||||
name: {
|
||||
en: "Body Slam",
|
||||
fr: "Plaquage"
|
||||
fr: "Plaquage",
|
||||
es: "Golpe Cuerpo",
|
||||
it: "Corposcontro",
|
||||
pt: "Body Slam",
|
||||
de: "Bodyslam"
|
||||
},
|
||||
|
||||
effect: {
|
||||
en: "Flip a coin. If heads, your opponent’s Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c’est face, le Pokémon Actif de votre adversaire est maintenant Paralysé."
|
||||
en: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||
fr: "Lancez une pièce. Si c'est face, le Pokémon Actif de votre adversaire est maintenant Paralysé.",
|
||||
es: "Lanza 1 moneda. Si sale cara, el Pokémon Activo de tu rival pasa a estar Paralizado.",
|
||||
it: "Lancia una moneta. Se esce testa, il Pokémon attivo del tuo avversario viene paralizzato.",
|
||||
pt: "Flip a coin. If heads, your opponent's Active Pokémon is now Paralyzed.",
|
||||
de: "Wirf 1 Münze. Bei Kopf ist das Aktive Pokémon deines Gegners jetzt paralysiert."
|
||||
},
|
||||
|
||||
damage: 100,
|
||||
@ -49,7 +69,23 @@ const card: Card = {
|
||||
value: "×2"
|
||||
}],
|
||||
|
||||
retreat: 3
|
||||
retreat: 3,
|
||||
|
||||
description: {
|
||||
en: "It is not satisfied unless it eats over 880 pounds of food every day. When it is done eating, it goes promptly to sleep."
|
||||
},
|
||||
|
||||
stage: "Basic",
|
||||
dexId: [143],
|
||||
|
||||
variants: {
|
||||
normal: false,
|
||||
reverse: false,
|
||||
holo: true,
|
||||
firstEdition: false
|
||||
},
|
||||
|
||||
regulationMark: "D"
|
||||
}
|
||||
|
||||
export default card
|
||||
export default card
|
||||
|
Reference in New Issue
Block a user