From 872d9442846a187dbafd5feece88eaae260ae9ff Mon Sep 17 00:00:00 2001 From: Hesketh2 <88981446+Hesketh2@users.noreply.github.com> Date: Thu, 8 Aug 2024 23:02:40 +0700 Subject: [PATCH] feat(info): add GeoGuessr (#4483) * feat(info): Setup for GeoGuessr * Update info.lua * Adapt #4495 * Update info.lua * Fix the abbreviation abbreviation should be just the full game name here. I think we can skip the manual width here, players name are not too long --- standard/info/wikis/geoguessr/info.lua | 40 ++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 standard/info/wikis/geoguessr/info.lua diff --git a/standard/info/wikis/geoguessr/info.lua b/standard/info/wikis/geoguessr/info.lua new file mode 100644 index 00000000000..5f2a7aeb11b --- /dev/null +++ b/standard/info/wikis/geoguessr/info.lua @@ -0,0 +1,40 @@ +--- +-- @Liquipedia +-- wiki=geoguessr +-- page=Module:Info +-- +-- Please see https://github.com/Liquipedia/Lua-Modules to contribute +-- + +return { + startYear = 2013, + wikiName = 'geoguessr', + name = 'GeoGuessr', + defaultGame = 'geoguessr', + games = { + geoguessr = { + abbreviation = 'GeoGuessr', + name = 'GeoGuessr', + link = 'GeoGuessr', + logo = { + darkMode = 'GeoGuessr allmode.png', + lightMode = 'GeoGuessr allmode.png', + }, + defaultTeamLogo = { + darkMode = 'GeoGuessr allmode.png', + lightMode = 'GeoGuessr allmode.png', + }, + }, + }, + config = { + squads = { + hasPosition = false, + hasSpecialTeam = false, + allowManual = false, + }, + match2 = { + }, + }, + defaultRoundPrecision = 0, + match2 = 0, +}