content

package
v1.1.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jul 3, 2026 License: MIT Imports: 6 Imported by: 0

Documentation

Overview

Package content loads the embedded lesson JSON files.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Boss

type Boss struct {
	Name         string      `json:"name"`
	Taunt        string      `json:"taunt"`
	TimeLimitSec int         `json:"timeLimitSec"`
	XP           int         `json:"xp"`
	Steps        []Challenge `json:"steps"`
}

type Challenge

type Challenge struct {
	ID          string      `json:"id"`
	Intro       string      `json:"intro"`
	Buffer      []string    `json:"buffer"`
	Cursor      [2]int      `json:"cursor"`
	Goal        engine.Goal `json:"goal"`
	Par         int         `json:"par"`
	XP          int         `json:"xp"`
	Hint        string      `json:"hint"`
	NewKeys     []string    `json:"newKeys,omitempty"`
	AllowedKeys []string    `json:"allowedKeys,omitempty"`
}

type Lesson

type Lesson struct {
	ID         string      `json:"id"`
	Act        int         `json:"act"`
	Order      int         `json:"order"`
	Title      string      `json:"title"`
	Story      string      `json:"story"`
	Challenges []Challenge `json:"challenges"`
	Boss       *Boss       `json:"boss,omitempty"`
}

func All

func All() ([]Lesson, error)

All returns every embedded lesson, sorted by (act, order).

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL