Skip to content

Commit

Permalink
Merge branch 'main' into 217-next-part-of-discord-threads
Browse files Browse the repository at this point in the history
  • Loading branch information
Entkenntnis committed Nov 4, 2024
2 parents b0183da + aeb7226 commit e81bb7c
Showing 1 changed file with 50 additions and 1 deletion.
51 changes: 50 additions & 1 deletion src/server/routes/hints.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ import escapeHTML from 'escape-html'

/** @type {import('../../data/types.js').HintsData} */
export const hintsData = {
5: {
entries: [{ question: 'wie denn ?', answer: 'Probier mal mit der Maus' }],
},
15: {
entries: [
{
question: 'Bei mir klappt die aufgabe nicht',
answer: 'Schau dir den Text bei "... ist falsch" genauer an',
},
],
},
17: {
entries: [
{
Expand All @@ -12,6 +23,14 @@ export const hintsData = {
},
],
},
39: {
entries: [
{
question: 'Hilfe bitte',
answer: 'Hast du die Flaggen im Video entdeckt?',
},
],
},
40: {
entries: [
{ question: 'wie geht das?', answer: 'Lies dir durch was da steht' },
Expand Down Expand Up @@ -88,6 +107,14 @@ export const hintsData = {
},
],
},
78: {
entries: [
{
question: 'Wie funktioniert diese Aufgabe ',
answer: 'Hast du die Druckvorschau geöffnet?',
},
],
},
80: {
entries: [
{
Expand Down Expand Up @@ -160,6 +187,20 @@ export const hintsData = {
},
],
},
112: {
entries: [
{
question: 'Wo finde ich die Block ID?',
answer:
'<a href="https://minecraftitemids.com/types/redstone" target="_blank">https://minecraftitemids.com/types/redstone</a>',
},
],
},
114: {
entries: [
{ question: 'kan mmir jemand helfen', answer: 'Klick mal auf den Baum' },
],
},
115: {
entries: [
{
Expand Down Expand Up @@ -330,6 +371,14 @@ export const hintsData = {
},
],
},
337: {
entries: [
{
question: 'wie kann mann das lösen',
answer: 'Erkennst du ein paar der Blöcke?',
},
],
},
339: {
entries: [
{
Expand Down Expand Up @@ -376,7 +425,7 @@ export function setupHints(App) {
heading: `Hinweise für "${challenge.title['de']}"`,
backButton: false,
content: `
<p><a href="/map">zurück</a></p>
<p><a href="/challenge/${id}">zurück zur Aufgabe</a>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href="/map">zurück zur Karte</a></p>
${
!hints
Expand Down

0 comments on commit e81bb7c

Please sign in to comment.