├── .github └── workflows │ └── codeql.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .prettierrc.json ├── .vscode └── launch.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── audio ├── game-bonus-144751.mp3 ├── happy-day-113985.mp3 └── wah-wah-sad-trombone-6347.mp3 ├── css ├── characters.css ├── difficulty-levels.css ├── game-scores.css ├── home-page.css ├── icy-tower-home.css ├── iframe-hello-user.css ├── instructions.css └── tower.css ├── html ├── characters.html ├── difficulty-levels.html ├── game-scores.html ├── home-page.html ├── icy-tower-home.html ├── iframe-hello-user.html ├── instructions.html └── tower.html ├── image ├── arrow.png ├── back.png ├── background-for-game.png ├── background.jpg ├── choose-your-hero.png ├── close-window.png ├── first_block.png ├── for-instractions-1.png ├── for-instractions-2.png ├── for-instractions-3_1.png ├── for-instractions-3_2.png ├── for-instractions-3_3.png ├── game1.jpg ├── gameOver.jpg ├── hero1.png ├── hero1_2.png ├── hero2.png ├── hero2_2.png ├── hero3.png ├── hero3_2.png ├── high scores.png ├── home.png ├── icy-tower-start.png ├── icy-tower-start1.png ├── icyTower.png ├── logoWebsite.jpg ├── new-game.png ├── professional.png ├── rookie.png ├── second-block.png ├── stone-wall.jpg ├── subwey-sufers-game2.jpg ├── third-block.png ├── train-condu-game3.jpg ├── world class.png ├── x.png └── your_score.png ├── js ├── characters.js ├── game-scores.js ├── iframe-hello-user.js ├── login-sign-in.js ├── page-under-building.js └── tower.js └── package.json /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/.prettierrc -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/README.md -------------------------------------------------------------------------------- /audio/game-bonus-144751.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/audio/game-bonus-144751.mp3 -------------------------------------------------------------------------------- /audio/happy-day-113985.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/audio/happy-day-113985.mp3 -------------------------------------------------------------------------------- /audio/wah-wah-sad-trombone-6347.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/audio/wah-wah-sad-trombone-6347.mp3 -------------------------------------------------------------------------------- /css/characters.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/css/characters.css -------------------------------------------------------------------------------- /css/difficulty-levels.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/css/difficulty-levels.css -------------------------------------------------------------------------------- /css/game-scores.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/css/game-scores.css -------------------------------------------------------------------------------- /css/home-page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/css/home-page.css -------------------------------------------------------------------------------- /css/icy-tower-home.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/css/icy-tower-home.css -------------------------------------------------------------------------------- /css/iframe-hello-user.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/css/iframe-hello-user.css -------------------------------------------------------------------------------- /css/instructions.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/css/instructions.css -------------------------------------------------------------------------------- /css/tower.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/css/tower.css -------------------------------------------------------------------------------- /html/characters.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/html/characters.html -------------------------------------------------------------------------------- /html/difficulty-levels.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/html/difficulty-levels.html -------------------------------------------------------------------------------- /html/game-scores.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/html/game-scores.html -------------------------------------------------------------------------------- /html/home-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/html/home-page.html -------------------------------------------------------------------------------- /html/icy-tower-home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/html/icy-tower-home.html -------------------------------------------------------------------------------- /html/iframe-hello-user.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/html/iframe-hello-user.html -------------------------------------------------------------------------------- /html/instructions.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/html/instructions.html -------------------------------------------------------------------------------- /html/tower.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/html/tower.html -------------------------------------------------------------------------------- /image/arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/arrow.png -------------------------------------------------------------------------------- /image/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/back.png -------------------------------------------------------------------------------- /image/background-for-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/background-for-game.png -------------------------------------------------------------------------------- /image/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/background.jpg -------------------------------------------------------------------------------- /image/choose-your-hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/choose-your-hero.png -------------------------------------------------------------------------------- /image/close-window.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/close-window.png -------------------------------------------------------------------------------- /image/first_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/first_block.png -------------------------------------------------------------------------------- /image/for-instractions-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/for-instractions-1.png -------------------------------------------------------------------------------- /image/for-instractions-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/for-instractions-2.png -------------------------------------------------------------------------------- /image/for-instractions-3_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/for-instractions-3_1.png -------------------------------------------------------------------------------- /image/for-instractions-3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/for-instractions-3_2.png -------------------------------------------------------------------------------- /image/for-instractions-3_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/for-instractions-3_3.png -------------------------------------------------------------------------------- /image/game1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/game1.jpg -------------------------------------------------------------------------------- /image/gameOver.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/gameOver.jpg -------------------------------------------------------------------------------- /image/hero1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/hero1.png -------------------------------------------------------------------------------- /image/hero1_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/hero1_2.png -------------------------------------------------------------------------------- /image/hero2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/hero2.png -------------------------------------------------------------------------------- /image/hero2_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/hero2_2.png -------------------------------------------------------------------------------- /image/hero3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/hero3.png -------------------------------------------------------------------------------- /image/hero3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/hero3_2.png -------------------------------------------------------------------------------- /image/high scores.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/high scores.png -------------------------------------------------------------------------------- /image/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/home.png -------------------------------------------------------------------------------- /image/icy-tower-start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/icy-tower-start.png -------------------------------------------------------------------------------- /image/icy-tower-start1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/icy-tower-start1.png -------------------------------------------------------------------------------- /image/icyTower.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/icyTower.png -------------------------------------------------------------------------------- /image/logoWebsite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/logoWebsite.jpg -------------------------------------------------------------------------------- /image/new-game.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/new-game.png -------------------------------------------------------------------------------- /image/professional.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/professional.png -------------------------------------------------------------------------------- /image/rookie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/rookie.png -------------------------------------------------------------------------------- /image/second-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/second-block.png -------------------------------------------------------------------------------- /image/stone-wall.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/stone-wall.jpg -------------------------------------------------------------------------------- /image/subwey-sufers-game2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/subwey-sufers-game2.jpg -------------------------------------------------------------------------------- /image/third-block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/third-block.png -------------------------------------------------------------------------------- /image/train-condu-game3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/train-condu-game3.jpg -------------------------------------------------------------------------------- /image/world class.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/world class.png -------------------------------------------------------------------------------- /image/x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/x.png -------------------------------------------------------------------------------- /image/your_score.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/image/your_score.png -------------------------------------------------------------------------------- /js/characters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/js/characters.js -------------------------------------------------------------------------------- /js/game-scores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/js/game-scores.js -------------------------------------------------------------------------------- /js/iframe-hello-user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/js/iframe-hello-user.js -------------------------------------------------------------------------------- /js/login-sign-in.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/js/login-sign-in.js -------------------------------------------------------------------------------- /js/page-under-building.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/js/page-under-building.js -------------------------------------------------------------------------------- /js/tower.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/js/tower.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chavi362/Icy-Tower/HEAD/package.json --------------------------------------------------------------------------------