├── .eslintrc.cjs ├── .gitignore ├── .vscode └── settings.json ├── AUTHORS ├── LICENSE ├── README.md ├── faq.html ├── favicon.ico ├── fonts ├── Lato │ ├── Lato-Black.ttf │ ├── Lato-BlackItalic.ttf │ ├── Lato-Bold.ttf │ ├── Lato-BoldItalic.ttf │ ├── Lato-Hairline.ttf │ ├── Lato-HairlineItalic.ttf │ ├── Lato-Italic.ttf │ ├── Lato-Light.ttf │ ├── Lato-LightItalic.ttf │ ├── Lato-Regular.ttf │ └── OFL.txt └── Suez_One │ ├── OFL.txt │ └── SuezOne-Regular.ttf ├── images ├── achLocked.jpg ├── backgrounds │ ├── Constable,_View_on_the_Stour_near_Dedham.jpg │ ├── John_Constable_-_A_Church_in_the_Trees_-_Google_Art_Project.jpg │ ├── John_Constable_-_A_Road_across_Hampstead_Heath_-_1949.235_-_Yale_University_Art_Gallery.jpg │ ├── John_Constable_-_A_View_on_Hampstead_Heath_with_Harrow_in_the_Distance_(1822).jpg │ ├── John_Constable_-_Dedham_Vale_-_Google_Art_Project.jpg │ ├── John_Constable_-_Fire_in_London,_Seen_from_Hampstead_-_Google_Art_Project.jpg │ ├── John_Constable_-_Hampstead_Heath,_with_a_Bonfire_-_Google_Art_Project.jpg │ ├── John_Constable_-_Hampstead_Heath_-_Google_Art_Project_(2434562).jpg │ ├── John_Constable_-_Harwich-_The_Low_Lighthouse_and_Beacon_Hill_-_Google_Art_Project.jpg │ ├── John_Constable_-_Osmington_Village_-_Google_Art_Project.jpg │ ├── John_Constable_-_Ploughing_Scene_in_Suffolk_-_Google_Art_Project.jpg │ ├── John_Constable_023.jpg │ ├── John_Constable_028.jpg │ ├── John_Constable_Stour_Valley_and_Dedham_Church.jpg │ ├── MuMA_-_Constable_-_Landscape.jpg │ ├── constableLandscapeRetouched.jpg │ ├── constable_original.jpg │ ├── constable_wivenhoe_park_essex.jpg │ └── constable_wivenhoe_park_essex_faded.jpg ├── backup.png ├── carrion.png ├── food.png ├── gold.png ├── herbs.png ├── leather.png ├── metal.png ├── ore.png ├── piety.png ├── shambling-zombie.png ├── skins.png ├── smitten.png ├── stone.png └── wood.png ├── index.html ├── package.json ├── scripts ├── ajax.js ├── civclicker-classes.js ├── civclicker-data.js ├── civclicker-update.js ├── civclicker.js ├── jsutils.js ├── libs │ └── lz-string.js ├── number-formatters.js ├── ui.js └── updates.js ├── styles ├── civclicker.css ├── fonts.css └── info.css ├── updates.html ├── updates_colcord.html └── updates_holley.html /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/AUTHORS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/README.md -------------------------------------------------------------------------------- /faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/faq.html -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/favicon.ico -------------------------------------------------------------------------------- /fonts/Lato/Lato-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-Black.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-BlackItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-Bold.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-BoldItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-Hairline.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-Hairline.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-HairlineItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-HairlineItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-Italic.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-Light.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-LightItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-LightItalic.ttf -------------------------------------------------------------------------------- /fonts/Lato/Lato-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/Lato-Regular.ttf -------------------------------------------------------------------------------- /fonts/Lato/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Lato/OFL.txt -------------------------------------------------------------------------------- /fonts/Suez_One/OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Suez_One/OFL.txt -------------------------------------------------------------------------------- /fonts/Suez_One/SuezOne-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/fonts/Suez_One/SuezOne-Regular.ttf -------------------------------------------------------------------------------- /images/achLocked.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/achLocked.jpg -------------------------------------------------------------------------------- /images/backgrounds/Constable,_View_on_the_Stour_near_Dedham.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/Constable,_View_on_the_Stour_near_Dedham.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_A_Church_in_the_Trees_-_Google_Art_Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_A_Church_in_the_Trees_-_Google_Art_Project.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_A_Road_across_Hampstead_Heath_-_1949.235_-_Yale_University_Art_Gallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_A_Road_across_Hampstead_Heath_-_1949.235_-_Yale_University_Art_Gallery.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_A_View_on_Hampstead_Heath_with_Harrow_in_the_Distance_(1822).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_A_View_on_Hampstead_Heath_with_Harrow_in_the_Distance_(1822).jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_Dedham_Vale_-_Google_Art_Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_Dedham_Vale_-_Google_Art_Project.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_Fire_in_London,_Seen_from_Hampstead_-_Google_Art_Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_Fire_in_London,_Seen_from_Hampstead_-_Google_Art_Project.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_Hampstead_Heath,_with_a_Bonfire_-_Google_Art_Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_Hampstead_Heath,_with_a_Bonfire_-_Google_Art_Project.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_Hampstead_Heath_-_Google_Art_Project_(2434562).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_Hampstead_Heath_-_Google_Art_Project_(2434562).jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_Harwich-_The_Low_Lighthouse_and_Beacon_Hill_-_Google_Art_Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_Harwich-_The_Low_Lighthouse_and_Beacon_Hill_-_Google_Art_Project.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_Osmington_Village_-_Google_Art_Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_Osmington_Village_-_Google_Art_Project.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_-_Ploughing_Scene_in_Suffolk_-_Google_Art_Project.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_-_Ploughing_Scene_in_Suffolk_-_Google_Art_Project.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_023.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_023.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_028.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_028.jpg -------------------------------------------------------------------------------- /images/backgrounds/John_Constable_Stour_Valley_and_Dedham_Church.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/John_Constable_Stour_Valley_and_Dedham_Church.jpg -------------------------------------------------------------------------------- /images/backgrounds/MuMA_-_Constable_-_Landscape.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/MuMA_-_Constable_-_Landscape.jpg -------------------------------------------------------------------------------- /images/backgrounds/constableLandscapeRetouched.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/constableLandscapeRetouched.jpg -------------------------------------------------------------------------------- /images/backgrounds/constable_original.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/constable_original.jpg -------------------------------------------------------------------------------- /images/backgrounds/constable_wivenhoe_park_essex.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/constable_wivenhoe_park_essex.jpg -------------------------------------------------------------------------------- /images/backgrounds/constable_wivenhoe_park_essex_faded.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backgrounds/constable_wivenhoe_park_essex_faded.jpg -------------------------------------------------------------------------------- /images/backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/backup.png -------------------------------------------------------------------------------- /images/carrion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/carrion.png -------------------------------------------------------------------------------- /images/food.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/food.png -------------------------------------------------------------------------------- /images/gold.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/gold.png -------------------------------------------------------------------------------- /images/herbs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/herbs.png -------------------------------------------------------------------------------- /images/leather.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/leather.png -------------------------------------------------------------------------------- /images/metal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/metal.png -------------------------------------------------------------------------------- /images/ore.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/ore.png -------------------------------------------------------------------------------- /images/piety.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/piety.png -------------------------------------------------------------------------------- /images/shambling-zombie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/shambling-zombie.png -------------------------------------------------------------------------------- /images/skins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/skins.png -------------------------------------------------------------------------------- /images/smitten.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/smitten.png -------------------------------------------------------------------------------- /images/stone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/stone.png -------------------------------------------------------------------------------- /images/wood.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/images/wood.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/package.json -------------------------------------------------------------------------------- /scripts/ajax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/ajax.js -------------------------------------------------------------------------------- /scripts/civclicker-classes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/civclicker-classes.js -------------------------------------------------------------------------------- /scripts/civclicker-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/civclicker-data.js -------------------------------------------------------------------------------- /scripts/civclicker-update.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/civclicker-update.js -------------------------------------------------------------------------------- /scripts/civclicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/civclicker.js -------------------------------------------------------------------------------- /scripts/jsutils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/jsutils.js -------------------------------------------------------------------------------- /scripts/libs/lz-string.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/libs/lz-string.js -------------------------------------------------------------------------------- /scripts/number-formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/number-formatters.js -------------------------------------------------------------------------------- /scripts/ui.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/ui.js -------------------------------------------------------------------------------- /scripts/updates.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/scripts/updates.js -------------------------------------------------------------------------------- /styles/civclicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/styles/civclicker.css -------------------------------------------------------------------------------- /styles/fonts.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/styles/fonts.css -------------------------------------------------------------------------------- /styles/info.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/styles/info.css -------------------------------------------------------------------------------- /updates.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/updates.html -------------------------------------------------------------------------------- /updates_colcord.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/updates_colcord.html -------------------------------------------------------------------------------- /updates_holley.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/deathraygames/civ-clicker/HEAD/updates_holley.html --------------------------------------------------------------------------------