UNPKG

nodewords

Version:

Command line word games

154 lines (128 loc) 1.86 kB
const stageZero = ` `; const stageOne = ` ______________ `; const stageTwo = ` | | | | | | | | |______________ `; const stageThree = ` _____________ | | | | | | | | |______________ `; const stageFour = ` _____________ | / | / |/ | | | | | |______________ `; const stageFive = ` _____________ | / | | / | |/ | | | | | |______________ `; const stageSix = ` _____________ | / | | / | |/ \\\\\\// | (x x) | | | | |______________ `; const stageSeven = ` _____________ | / | | / | |/ \\\\\\// | (x x) | ( \` ) | | | |______________ `; const stageEight = ` _____________ | / | | / | |/ \\\\\\// | (x x) | /( \` ) | | | |______________ `; const stageNine = ` _____________ | / | | / | |/ \\\\\\// | (x x) | /( \` )\\ | | | |______________ `; const stageTen = ` _____________ | / | | / | |/ \\\\\\// | (x x) | /( \` )\\ | 0 | | |______________ `; const stageEleven = ` _____________ | / | | / | |/ \\\\\\// | (x x) | /( \` )\\ | 0 0 | | |______________ `; module.exports = [ stageZero, stageOne, stageTwo, stageThree, stageFour, stageFive, stageSix, stageSeven, stageEight, stageNine, stageTen, stageEleven ];