Skip to content

Latest commit

 

History

History
62 lines (51 loc) · 1.32 KB

File metadata and controls

62 lines (51 loc) · 1.32 KB

Bilderna

Bilderna is the service that takes care of generating the pictures for the Akimitsu bot.

It comes from the Swedish, and means "the pictures" (original, eh ?)

When starting, it will listen for any incoming requests on 0.0.0.0:3000

Entrypoints

Valid class names are:

  • ARCHER
  • KNGIHT
  • MAGE
  • TRAVELER

Valid city names are:

  • Hamnen
  • Kvarnen
  • Herrgården
  • Slotet
  • Jägarens
  • Timmerjacka
  • Ängen
  • Havetgrandsen
  • Oas
  • Ökenstad

The generated map will be different based on the local time (UTC 0), and the season. There is a winter map, and a summer map. There is a night map and a day map.

POST: /in_city

{
  "origin" : "Timmerjacka", // Valid city name
  "class" : "KNIGHT"// valid class name
}

POST: /traveling

{
  "origin": "Hamnen", // Valid city name
  "destination": "Kvarnen",// Valid city name
  "progress": 0, //number between 0 & 100,
  "class": "ARCHER", // Valid class name
}