7 894
edições
Sem resumo de edição |
Sem resumo de edição |
||
Linha 43: | Linha 43: | ||
.image-item { | .image-item { | ||
flex: 1 0 30%; | flex: 1 0 30%; | ||
text-align: | text-align: left; | ||
} | } | ||
.image-item img { | .image-item img { | ||
Linha 50: | Linha 50: | ||
cursor: pointer; | cursor: pointer; | ||
} | } | ||
.image-info { | .image-info p { | ||
margin: 5px 0; | |||
} | } | ||
.image-info { | |||
width: 100%; | |||
text-align: left; /* Garante que o texto fique à esquerda */ | |||
margin-top: 10px; | |||
} | |||
.tag-button { | .tag-button { | ||
display: inline-block; | display: inline-block; | ||
Linha 114: | Linha 119: | ||
const hunts = { | const hunts = { | ||
"NW": [ | "NW": [ | ||
{ name: "Grimer", difficulty: " | { name: "Grimer", difficulty: "Baixa", local: "Cinnabar", classes: ["Orebound", "Psycraft"], imageUrl: "https://wiki.pokexgames.com/images/e/ee/Banner_Hunts_-_NW_Grimer.png", hasType: true, huntTypes: ["Poison"], link: "https://wiki.pokexgames.com/index.php/Cosmic_Quest_-_Boss_Solrock" }, | ||
{ name: "Petilil", difficulty: " | { name: "Petilil", difficulty: "Baixa", local: "Fuchsia", classes: ["Volcanic", "Naturia","Malefic","Seavell","Wingeon"], imageUrl: "https://wiki.pokexgames.com/images/7/70/Nightmare_Hunt_Petilil.png", hasType: true, huntTypes: ["Grass"], link: "https://exemplo.com/hunt2" } | ||
], | ], | ||
}; | }; | ||
Linha 189: | Linha 194: | ||
<p><b>Dificuldade:</b> ${hunt.difficulty}</p> | <p><b>Dificuldade:</b> ${hunt.difficulty}</p> | ||
${hunt.hasType ? `<p><b>Dano da Hunt:</b> ${selectedHuntType || "Não selecionado"}</p>` : ""} | ${hunt.hasType ? `<p><b>Dano da Hunt:</b> ${selectedHuntType || "Não selecionado"}</p>` : ""} | ||
<p><b>Clãs Indicados:</b></p> | <p><b>Clãs Indicados:</b></p> <div>${hunt.classes.map(cls => `<img src="${classIcons[cls]}" alt="${cls}" class="class-icon">`).join("")}</div> | ||
</div> | </div> | ||
`; | `; |