1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-23 03:12:10 +00:00
Florian Bouillon e21ea0646e
Added BW translation (#65)
* Added basic translation
IT will need a second checkup by another source
as attacks are not correcly ordered

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>

* Removed bugged file

Signed-off-by: Florian BOUILLON <florian.bouillon@delta-wings.net>
2021-09-02 12:01:58 +02:00

90 lines
2.0 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Card } from '../../../interfaces'
import Set from '../Next Destinies'
const card: Card = {
name: {
en: "Bronzong",
fr: "Archéodong",
es: "Bronzong",
it: "Bronzong",
pt: "Bronzong",
de: "Bronzong"
},
illustrator: "Kouki Saitou",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
437,
],
hp: 110,
types: [
"Metal",
],
evolveFrom: {
en: "Bronzor",
fr: "Archéomire",
},
stage: "Stage1",
abilities: [
{
type: "Ability",
name: {
en: "Heal Block",
fr: "Anti-Soin",
es: "Anticura",
it: "Anticura",
pt: "Bloqueio de Cura",
de: "Heilblockade"
},
effect: {
en: "Damage cant be healed from any Pokémon (both yours and your opponents). (Damage counters can still be moved.)",
fr: "Les dégâts ne peuvent être soignés pour aucun Pokémon (les vôtres et ceux de votre adversaire). (Les marqueurs de dégâts peuvent toujours être déplacés.)",
es: "No se puede curar el daño de ningún Pokémon (tanto tuyos como de tu rival). (Todavía se pueden mover los contadores de daño).",
it: "Non è possibile curare i danni da nessun Pokémon, né i tuoi né quelli del tuo avversario. I segnalini danno possono comunque essere spostati.",
pt: "Não é possível curar danos de nenhum Pokémon (seus e do seu oponente). (Os marcadores de danos ainda podem ser movidos.)",
de: "Es kann kein Schaden bei Pokémon (deinen und denen deines Gegners) geheilt werden. (Schadensmarken können jedoch weiterhin verschoben werden.)"
},
},
],
attacks: [
{
cost: [
"Metal",
"Colorless",
"Colorless",
],
name: {
en: "Oracle Inflict",
fr: "Supplice de l'Oracle",
},
effect: {
en: "Does 10 more damage for each card in your opponent's hand.",
fr: "Inflige 10 dégâts supplémentaires pour chaque carte dans la main de votre adversaire.",
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 4,
}
export default card