2023-03-28 18:54:52 +00:00
<!DOCTYPE html>
< html lang = "en" >
< head >
2023-11-19 02:08:04 +00:00
< title > PokéRogue< / title >
< meta name = "description" content = "A Pokémon fangame heavily inspired by the roguelite genre. Battle endlessly while gathering stacking items, exploring many different biomes, and reaching Pokémon stats you never thought possible." >
2023-03-28 18:54:52 +00:00
< meta charset = "UTF-8" / >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
< title > Pokemon Rogue Battle< / title >
2023-12-25 20:03:50 +00:00
< link rel = "stylesheet" type = "text/css" href = "index.css" / >
2023-03-28 18:54:52 +00:00
< / head >
< body >
< div id = "app" > < / div >
2023-12-25 20:03:50 +00:00
< div id = "touchControls" >
< div id = "dpad" class = "unselectable" >
< svg xmlns = "http://www.w3.org/2000/svg" viewBox = "0 0 72 72" >
< path id = "dpadUp" data-key = "UP" d = "M48,5.8C48,2.5,45.4,0,42,0H29.9C26.6,0,24,2.4,24,5.8V24h24V5.8z" / >
< path id = "dpadRight" data-key = "RIGHT" d = "M66.2,24H48v24h18.2c3.3,0,5.8-2.7,5.8-6V29.9C72,26.5,69.5,24,66.2,24z" / >
< path id = "dpadDown" data-key = "DOWN" d = "M24,66.3c0,3.3,2.6,5.7,5.9,5.7H42c3.3,0,6-2.4,6-5.7V48H24V66.3z" / >
< path id = "dpadLeft" data-key = "LEFT" d = "M5.7,24C2.4,24,0,26.5,0,29.9V42c0,3.3,2.3,6,5.7,6H24V24H5.7z" / >
< rect id = "dpadCenter" x = "24" y = "24" width = "24" height = "24" / >
< / svg >
< / div >
< div id = "apad" class = "unselectable" >
< div id = "apadAction" class = "apadCircBtn apadBtn" data-key = "ACTION" >
< text id = "apadLabelAction" class = "apadLabel" > A< / text >
< / div >
< div id = "apadCancel" class = "apadCircBtn apadBtn" data-key = "CANCEL" >
< text id = "apadLabelCancel" class = "apadLabel" > B< / text >
< / div >
< div id = "apadMenu" class = "apadRectBtn apadBtn" data-key = "MENU" >
< text id = "apadLabelMenu" class = "apadLabel apadLabelSmall" > Menu< / text >
< / div >
< div class = "apadBtnContainer" >
< div id = "apadCycleShiny" class = "apadSqBtn apadBtn" data-key = "CYCLE_SHINY" >
< text class = "apadLabel apadLabelSmall" > R< / text >
< / div >
< div id = "apadCycleForm" class = "apadSqBtn apadBtn" data-key = "CYCLE_FORM" >
< text class = "apadLabel apadLabelSmall" > F< / text >
< / div >
< div id = "apadCycleGender" class = "apadSqBtn apadBtn" data-key = "CYCLE_GENDER" >
< text class = "apadLabel apadLabelSmall" > G< / text >
< / div >
< div id = "apadCycleAbility" class = "apadSqBtn apadBtn" data-key = "CYCLE_ABILITY" >
< text class = "apadLabel apadLabelSmall" > E< / text >
< / div >
< / div >
< / div >
< / div >
2023-03-28 18:54:52 +00:00
< script type = "module" src = "src/main.ts" > < / script >
2023-12-25 20:03:50 +00:00
< script src = "src/touch-controls.js" > < / script >
2023-10-18 22:01:15 +00:00
< script src = "src/debug.js" > < / script >
2023-03-28 18:54:52 +00:00
< / body >
< / html >