package tins2020 import ( "image/color" "opslag.de/schobers/zntg/ui" ) type Intro struct { ui.Paragraph } func NewIntro() *LargeDialog { i := &Intro{} i.Font.Color = color.White i.Text = "Welcome to Botanim!\n\n" + "In Botanim you play the role of botanist and your goal is to cultivate flowers in an open landscape.\n\n" + "Flowers can only grow (well) in certain climates based on two properties: humidity and temperature. Watch out for existing vegetation to get an idea how humid the land is and check the appearance of the tile to see how hot it is. When well placed your planted flower will spread soon but an odd choice might kill your flower almost instantly. So choose carefully. When the flower spread significantly you can harvest flowers again to collect more money.\n\n" + "Controls:\n" + " - H: Selects harvest tool\n" + " - R: Selects research\n" + " - Spacebar: pauses game\n" + " - 1: runs game at normal speed\n" + " - 2: runs game extra fast\n" + " - Mouse wheel or plus/minus: zooms landscape\n" + " - W, A, S, D keys or CTRL + left mouse button or middle mouse button: pans landscape\n" + "\n" + "Have fun playing!" return NewLargeDialog("Botanim", i) }