├── .DS_Store ├── .settings └── launch.json ├── Card.js ├── CardBox.js ├── GameMain.js ├── Global.js ├── Machine.js ├── Player.js ├── index.js ├── npm-debug.log ├── package.json ├── public ├── .DS_Store ├── card.js ├── game_data.js ├── game_view.js ├── img │ ├── .DS_Store │ ├── bamboo_1.png │ ├── bamboo_2.png │ ├── bamboo_3.png │ ├── bamboo_4.png │ ├── bamboo_5.png │ ├── bamboo_6.png │ ├── bamboo_7.png │ ├── bamboo_8.png │ ├── bamboo_9.png │ ├── character_1.png │ ├── character_2.png │ ├── character_3.png │ ├── character_4.png │ ├── character_5.png │ ├── character_6.png │ ├── character_7.png │ ├── character_8.png │ ├── character_9.png │ ├── circle_1.png │ ├── circle_2.png │ ├── circle_3.png │ ├── circle_4.png │ ├── circle_5.png │ ├── circle_6.png │ ├── circle_7.png │ ├── circle_8.png │ ├── circle_9.png │ ├── dragon_green.png │ ├── dragon_red.png │ ├── dragon_white.png │ ├── flower_bamboo.png │ ├── flower_chrysanthemum.png │ ├── flower_orchid.png │ ├── flower_plum.png │ ├── season_autumn.png │ ├── season_spring.png │ ├── season_summer.png │ ├── season_winter.png │ ├── wind_east.png │ ├── wind_north.png │ ├── wind_south.png │ └── wind_west.png ├── img_url_dic.js ├── index.html ├── jquery-1.11.1.js ├── main.css ├── main.js └── table.js ├── room.js └── table.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/.DS_Store -------------------------------------------------------------------------------- /.settings/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/.settings/launch.json -------------------------------------------------------------------------------- /Card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/Card.js -------------------------------------------------------------------------------- /CardBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/CardBox.js -------------------------------------------------------------------------------- /GameMain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/GameMain.js -------------------------------------------------------------------------------- /Global.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/Global.js -------------------------------------------------------------------------------- /Machine.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/Machine.js -------------------------------------------------------------------------------- /Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/Player.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/index.js -------------------------------------------------------------------------------- /npm-debug.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/npm-debug.log -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/package.json -------------------------------------------------------------------------------- /public/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/.DS_Store -------------------------------------------------------------------------------- /public/card.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/card.js -------------------------------------------------------------------------------- /public/game_data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/game_data.js -------------------------------------------------------------------------------- /public/game_view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/game_view.js -------------------------------------------------------------------------------- /public/img/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/.DS_Store -------------------------------------------------------------------------------- /public/img/bamboo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_1.png -------------------------------------------------------------------------------- /public/img/bamboo_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_2.png -------------------------------------------------------------------------------- /public/img/bamboo_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_3.png -------------------------------------------------------------------------------- /public/img/bamboo_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_4.png -------------------------------------------------------------------------------- /public/img/bamboo_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_5.png -------------------------------------------------------------------------------- /public/img/bamboo_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_6.png -------------------------------------------------------------------------------- /public/img/bamboo_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_7.png -------------------------------------------------------------------------------- /public/img/bamboo_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_8.png -------------------------------------------------------------------------------- /public/img/bamboo_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/bamboo_9.png -------------------------------------------------------------------------------- /public/img/character_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_1.png -------------------------------------------------------------------------------- /public/img/character_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_2.png -------------------------------------------------------------------------------- /public/img/character_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_3.png -------------------------------------------------------------------------------- /public/img/character_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_4.png -------------------------------------------------------------------------------- /public/img/character_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_5.png -------------------------------------------------------------------------------- /public/img/character_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_6.png -------------------------------------------------------------------------------- /public/img/character_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_7.png -------------------------------------------------------------------------------- /public/img/character_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_8.png -------------------------------------------------------------------------------- /public/img/character_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/character_9.png -------------------------------------------------------------------------------- /public/img/circle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_1.png -------------------------------------------------------------------------------- /public/img/circle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_2.png -------------------------------------------------------------------------------- /public/img/circle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_3.png -------------------------------------------------------------------------------- /public/img/circle_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_4.png -------------------------------------------------------------------------------- /public/img/circle_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_5.png -------------------------------------------------------------------------------- /public/img/circle_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_6.png -------------------------------------------------------------------------------- /public/img/circle_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_7.png -------------------------------------------------------------------------------- /public/img/circle_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_8.png -------------------------------------------------------------------------------- /public/img/circle_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/circle_9.png -------------------------------------------------------------------------------- /public/img/dragon_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/dragon_green.png -------------------------------------------------------------------------------- /public/img/dragon_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/dragon_red.png -------------------------------------------------------------------------------- /public/img/dragon_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/dragon_white.png -------------------------------------------------------------------------------- /public/img/flower_bamboo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/flower_bamboo.png -------------------------------------------------------------------------------- /public/img/flower_chrysanthemum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/flower_chrysanthemum.png -------------------------------------------------------------------------------- /public/img/flower_orchid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/flower_orchid.png -------------------------------------------------------------------------------- /public/img/flower_plum.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/flower_plum.png -------------------------------------------------------------------------------- /public/img/season_autumn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/season_autumn.png -------------------------------------------------------------------------------- /public/img/season_spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/season_spring.png -------------------------------------------------------------------------------- /public/img/season_summer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/season_summer.png -------------------------------------------------------------------------------- /public/img/season_winter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/season_winter.png -------------------------------------------------------------------------------- /public/img/wind_east.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/wind_east.png -------------------------------------------------------------------------------- /public/img/wind_north.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/wind_north.png -------------------------------------------------------------------------------- /public/img/wind_south.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/wind_south.png -------------------------------------------------------------------------------- /public/img/wind_west.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img/wind_west.png -------------------------------------------------------------------------------- /public/img_url_dic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/img_url_dic.js -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/index.html -------------------------------------------------------------------------------- /public/jquery-1.11.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/jquery-1.11.1.js -------------------------------------------------------------------------------- /public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/main.css -------------------------------------------------------------------------------- /public/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/main.js -------------------------------------------------------------------------------- /public/table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/public/table.js -------------------------------------------------------------------------------- /room.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/room.js -------------------------------------------------------------------------------- /table.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/YellowPure/MJ/HEAD/table.js --------------------------------------------------------------------------------