1
0
mirror of https://github.com/tcgdex/cards-database.git synced 2025-04-30 23:02:09 +00:00
Florian Bouillon 6d133f5343
Some checks failed
Build Docker image / build (push) Failing after 42s
feat: Add missing german sets (HGSS & COL) (#451)
2023-12-06 01:20:07 +01:00

99 lines
1.9 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 '../Triumphant'
const card: Card = {
name: {
en: "Bronzong",
fr: "Archéodong",
de: "Bronzong"
},
illustrator: "Yuka Morii",
rarity: "Rare",
category: "Pokemon",
set: Set,
dexId: [
437,
],
hp: 90,
types: [
"Metal",
],
evolveFrom: {
en: "Bronzor",
fr: "Archeomire",
},
stage: "Stage1",
attacks: [
{
cost: [
"Colorless",
],
name: {
en: "Legend Ceremony",
fr: "Cérémonie légendaire",
de: "Legendenzeremonie"
},
effect: {
en: "Search your deck for both halves of a Pokémon LEGEND, show them to your opponent, and put them into your hand. Shuffle your deck afterward.",
fr: "Cherchez les deux moitiés dun Pokémon LÉGENDE dans votre deck, montrez-les à votre adversaire, puis ajoutez-les à votre main. Mélangez ensuite votre deck.",
de: "Durchsuche dein Deck nach beiden Hälften einer Pokémon-LEGENDE, zeige sie deinem Gegner und nimm sie auf die Hand. Mische anschließend dein Deck."
},
},
{
cost: [
"Colorless",
"Colorless",
],
name: {
en: "Reflect Energy",
fr: "Renvoi dénergie",
de: "Energiereflexion"
},
effect: {
en: "Move an Energy card attached to Bronzong to 1 of your Benched Pokémon.",
fr: "Prenez une carte Énergie attachée à Archéodong et attachez-la à lun de vos Pokémon de Banc.",
de: "Lege eine Energiekarte, die an Bronzong angelegt ist, an 1 Pokémon auf deiner Bank an."
},
damage: 30,
},
],
weaknesses: [
{
type: "Fire",
value: "×2"
},
],
resistances: [
{
type: "Psychic",
value: "-20"
},
],
retreat: 3,
description: {
en: "Ancient people believed that petitioning Bronzong for rain was the way to make crops grow."
},
variants: {
normal: true,
reverse: true,
holo: false,
firstEdition: false
}
}
export default card