Skip to content

Commit

Permalink
feat(info): add GeoGuessr (#4483)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
Hesketh2 authored Aug 8, 2024
1 parent 06cd386 commit 872d944
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions standard/info/wikis/geoguessr/info.lua
Original file line number Diff line number Diff line change
@@ -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,
}

0 comments on commit 872d944

Please sign in to comment.