├── book ├── 1.11+ │ ├── bukkit │ │ ├── base │ │ │ ├── permissions │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ ├── scoreboard │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ ├── packets │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ ├── bundle │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ ├── debug │ │ │ │ ├── images │ │ │ │ │ ├── run.png │ │ │ │ │ ├── start.png │ │ │ │ │ ├── remote.png │ │ │ │ │ ├── ecl_config.png │ │ │ │ │ ├── ecl_debug.png │ │ │ │ │ ├── configuration.png │ │ │ │ │ └── ecl_setting.png │ │ │ │ └── config.yml │ │ │ ├── export │ │ │ │ ├── images │ │ │ │ │ ├── ecl_final.png │ │ │ │ │ ├── ecl_export.png │ │ │ │ │ ├── intellij_jar.png │ │ │ │ │ ├── ecl_exp_select.png │ │ │ │ │ ├── intellij_final.png │ │ │ │ │ ├── intellij_settings.png │ │ │ │ │ └── intellij_moduleSettings.png │ │ │ │ └── config.yml │ │ │ ├── database │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ ├── commands │ │ │ │ └── config.yml │ │ │ ├── events │ │ │ │ └── config.yml │ │ │ ├── config │ │ │ │ └── config.yml │ │ │ ├── config.yml │ │ │ └── main │ │ │ │ └── config.yml │ │ ├── other │ │ │ ├── new │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ └── config.yml │ │ ├── config.yml │ │ └── prep │ │ │ ├── config.yml │ │ │ └── install │ │ │ ├── images │ │ │ ├── newproject.png │ │ │ ├── libssettings.png │ │ │ └── projsettings.png │ │ │ └── config.yml │ ├── forge │ │ ├── item │ │ │ ├── importing_model │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ ├── rarity │ │ │ │ ├── images │ │ │ │ │ └── legendary_test.png │ │ │ │ └── config.yml │ │ │ ├── creating_item │ │ │ │ ├── images │ │ │ │ │ ├── item_test.png │ │ │ │ │ ├── itemWithTexture.png │ │ │ │ │ ├── itemWithoutModel.png │ │ │ │ │ └── itemWithoutTexture.png │ │ │ │ └── config.yml │ │ │ ├── config.yml │ │ │ ├── metadata │ │ │ │ └── config.yml │ │ │ ├── item_model │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ │ └── tools │ │ │ │ └── config.yml │ │ ├── base │ │ │ ├── advanced_mcmod_info │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ ├── loading_stages │ │ │ │ ├── images │ │ │ │ │ └── loading_stages.png │ │ │ │ └── config.yml │ │ │ ├── config.yml │ │ │ ├── mod_structure │ │ │ │ └── config.yml │ │ │ ├── proxy │ │ │ │ └── config.yml │ │ │ ├── build_mod │ │ │ │ └── config.yml │ │ │ └── mod_annotation │ │ │ │ └── config.yml │ │ ├── local │ │ │ ├── config.yml │ │ │ └── index │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ ├── gui │ │ │ ├── config.yml │ │ │ └── custom_inventory │ │ │ │ ├── images │ │ │ │ ├── result.png │ │ │ │ ├── inventory_src.rar │ │ │ │ ├── slots_indexes.png │ │ │ │ ├── key_in_settings.png │ │ │ │ └── slot_size_coords.png │ │ │ │ └── config.yml │ │ ├── block │ │ │ ├── config.yml │ │ │ └── creating_block │ │ │ │ ├── images │ │ │ │ ├── block_test.png │ │ │ │ ├── blockWithTexture.png │ │ │ │ ├── blockWithoutModel.png │ │ │ │ └── blockWithoutTexture.png │ │ │ │ └── config.yml │ │ ├── prep │ │ │ ├── off_skin │ │ │ │ ├── images │ │ │ │ │ ├── Thumbs.db │ │ │ │ │ ├── forge-api.png │ │ │ │ │ ├── off_skin_idea.png │ │ │ │ │ └── off_skin_eclipse.png │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ │ ├── install │ │ │ │ ├── images │ │ │ │ │ ├── installer.png │ │ │ │ │ ├── download_mdk.png │ │ │ │ │ └── download_installer.png │ │ │ │ └── config.yml │ │ │ ├── setup_eclipse │ │ │ │ ├── images │ │ │ │ │ ├── run.png │ │ │ │ │ └── gradle_tasks.png │ │ │ │ └── config.yml │ │ │ ├── setup_idea │ │ │ │ ├── images │ │ │ │ │ ├── importing.png │ │ │ │ │ ├── run_config.png │ │ │ │ │ ├── gradle_tasks.png │ │ │ │ │ └── import_settings.png │ │ │ │ └── config.yml │ │ │ └── config.yml │ │ ├── example_mods │ │ │ ├── config.yml │ │ │ └── small_treasures │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ ├── other │ │ │ ├── access_transformers │ │ │ │ ├── images │ │ │ │ │ └── root.zip │ │ │ │ └── config.yml │ │ │ ├── sources │ │ │ │ ├── images │ │ │ │ │ └── sources_location.png │ │ │ │ └── config.yml │ │ │ └── config.yml │ │ └── config.yml │ ├── bungeecord │ │ ├── config.yml │ │ └── prep │ │ │ ├── config.yml │ │ │ └── install │ │ │ ├── images │ │ │ ├── libssettings.png │ │ │ ├── newproject.png │ │ │ └── projsettings.png │ │ │ └── config.yml │ └── config.yml ├── config.yml ├── 1.12+ │ ├── forge │ │ ├── gui │ │ │ ├── config.yml │ │ │ └── base │ │ │ │ ├── images │ │ │ │ └── 1.png │ │ │ │ └── config.yml │ │ ├── lang │ │ │ ├── config.yml │ │ │ └── base │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ ├── tileentity │ │ │ ├── config.yml │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── decremented.png │ │ │ │ └── incremented.png │ │ │ │ └── config.yml │ │ ├── creativetab │ │ │ ├── config.yml │ │ │ └── base │ │ │ │ ├── images │ │ │ │ ├── tab_1.png │ │ │ │ └── tab_2.png │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ ├── events │ │ │ ├── config.yml │ │ │ ├── base │ │ │ │ └── config.yml │ │ │ └── table │ │ │ │ └── config.yml │ │ ├── plant │ │ │ ├── config.yml │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── corn.png │ │ │ │ │ ├── corn_seed.png │ │ │ │ │ └── demonstration.png │ │ │ │ └── config.yml │ │ │ └── mod_cave_plant │ │ │ │ ├── images │ │ │ │ ├── src.zip │ │ │ │ ├── result.jpg │ │ │ │ ├── scheme.png │ │ │ │ ├── cave_crops0.png │ │ │ │ ├── cave_crops1.png │ │ │ │ ├── cave_crops2.png │ │ │ │ ├── cave_crops3.png │ │ │ │ ├── cave_crops4.png │ │ │ │ ├── cave_crops5.png │ │ │ │ ├── cave_crops6.png │ │ │ │ ├── cave_crops7.png │ │ │ │ ├── cave_plant.png │ │ │ │ ├── cave_seeds.png │ │ │ │ └── cave_grass_demo.png │ │ │ │ └── config.yml │ │ ├── achievements │ │ │ ├── config.yml │ │ │ ├── base │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ │ ├── prep │ │ │ │ └── config.yml │ │ │ └── recipes │ │ │ │ └── config.yml │ │ ├── craftsmeltingandbrewing │ │ │ ├── config.yml │ │ │ └── craft │ │ │ │ └── config.yml │ │ ├── item │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── face_first.png │ │ │ │ │ ├── face_three.png │ │ │ │ │ ├── model_face_first.png │ │ │ │ │ └── model_face_three.png │ │ │ │ └── config.yml │ │ │ ├── burn │ │ │ │ ├── images │ │ │ │ │ ├── customfuel.rar │ │ │ │ │ ├── burning_item_demonstration_1.png │ │ │ │ │ └── burning_item_demonstration_2.png │ │ │ │ └── config.yml │ │ │ ├── nbt │ │ │ │ ├── article.md │ │ │ │ └── config.yml │ │ │ ├── armor │ │ │ │ ├── images │ │ │ │ │ ├── model_armor.png │ │ │ │ │ ├── armor_layer_1.png │ │ │ │ │ ├── armor_layer_2.png │ │ │ │ │ └── equipped_armor.png │ │ │ │ └── config.yml │ │ │ ├── rarity │ │ │ │ ├── images │ │ │ │ │ └── legendary_test.png │ │ │ │ └── config.yml │ │ │ ├── config.yml │ │ │ ├── repair │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ │ ├── food │ │ │ │ └── config.yml │ │ │ ├── loot │ │ │ │ └── config.yml │ │ │ ├── metadata │ │ │ │ └── config.yml │ │ │ └── tools │ │ │ │ └── config.yml │ │ ├── advanced │ │ │ ├── layers │ │ │ │ ├── images │ │ │ │ │ └── quiver.png │ │ │ │ └── config.yml │ │ │ ├── buffs │ │ │ │ ├── images │ │ │ │ │ ├── bufficons.png │ │ │ │ │ └── broken-bone.png │ │ │ │ └── config.yml │ │ │ ├── keybinds │ │ │ │ ├── images │ │ │ │ │ └── keybinds.png │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ │ ├── config.yml │ │ │ └── sounds │ │ │ │ └── config.yml │ │ ├── block │ │ │ ├── base │ │ │ │ ├── images │ │ │ │ │ ├── face_first.png │ │ │ │ │ ├── face_three.png │ │ │ │ │ ├── model_face_first.png │ │ │ │ │ ├── model_face_three.png │ │ │ │ │ └── model_on_ground.png │ │ │ │ └── config.yml │ │ │ ├── config.yml │ │ │ └── blockstates │ │ │ │ └── config.yml │ │ ├── prep │ │ │ ├── install │ │ │ │ ├── images │ │ │ │ │ ├── installer.png │ │ │ │ │ ├── download_mdk.png │ │ │ │ │ └── download_installer.png │ │ │ │ └── config.yml │ │ │ ├── setup_eclipse │ │ │ │ ├── images │ │ │ │ │ ├── run.png │ │ │ │ │ └── gradle_tasks.png │ │ │ │ └── config.yml │ │ │ ├── off_skin │ │ │ │ ├── images │ │ │ │ │ ├── forge-api.png │ │ │ │ │ ├── off_skin_idea.png │ │ │ │ │ └── off_skin_eclipse.png │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ │ ├── setup_idea │ │ │ │ ├── images │ │ │ │ │ ├── importing.png │ │ │ │ │ ├── run_config.png │ │ │ │ │ ├── gradle_tasks.png │ │ │ │ │ └── import_settings.png │ │ │ │ └── config.yml │ │ │ ├── problems │ │ │ │ ├── images │ │ │ │ │ ├── setup_gradle_1.png │ │ │ │ │ ├── setup_gradle_2.png │ │ │ │ │ └── setup_gradle_3.png │ │ │ │ ├── config.yml │ │ │ │ └── article.md │ │ │ └── config.yml │ │ ├── other │ │ │ ├── jei_integration │ │ │ │ ├── images │ │ │ │ │ ├── jei.rar │ │ │ │ │ ├── drops_demonstration.png │ │ │ │ │ └── crafter_demonstration.png │ │ │ │ └── config.yml │ │ │ ├── access_transformers │ │ │ │ ├── images │ │ │ │ │ └── root.zip │ │ │ │ └── config.yml │ │ │ ├── sources │ │ │ │ ├── images │ │ │ │ │ └── sources_location.png │ │ │ │ └── config.yml │ │ │ ├── generation_lags │ │ │ │ ├── images │ │ │ │ │ ├── cascade_generation.png │ │ │ │ │ ├── normal_generation.png │ │ │ │ │ ├── generation_out_of_chunk.png │ │ │ │ │ ├── translated_generation.png │ │ │ │ │ ├── generation_start_position.png │ │ │ │ │ └── normal_generation_no_edges.png │ │ │ │ └── config.yml │ │ │ └── config.yml │ │ ├── base │ │ │ ├── loading_stages │ │ │ │ ├── images │ │ │ │ │ └── loading_stages.png │ │ │ │ └── config.yml │ │ │ ├── config.yml │ │ │ ├── mod_structure │ │ │ │ └── config.yml │ │ │ ├── proxy │ │ │ │ └── config.yml │ │ │ ├── build_mod │ │ │ │ └── config.yml │ │ │ └── mod_annotation │ │ │ │ └── config.yml │ │ └── config.yml │ └── config.yml └── 1.7.10 │ ├── forge │ ├── item │ │ ├── config.yml │ │ └── burn │ │ │ ├── images │ │ │ ├── customfuel.rar │ │ │ ├── burning_item_demonstration_1.png │ │ │ └── burning_item_demonstration_2.png │ │ │ └── config.yml │ ├── advanced │ │ ├── config.yml │ │ └── buffs │ │ │ ├── images │ │ │ ├── buff.png │ │ │ ├── bufficons.png │ │ │ └── test-effect-demo.png │ │ │ └── config.yml │ ├── other │ │ ├── config.yml │ │ └── access_transformers │ │ │ ├── images │ │ │ └── root.zip │ │ │ └── config.yml │ ├── config.yml │ └── base │ │ ├── config.yml │ │ ├── proxy │ │ └── config.yml │ │ ├── first_steps │ │ ├── config.yml │ │ └── article.md │ │ └── setup │ │ └── config.yml │ └── config.yml ├── .gitattribute ├── site ├── must-have │ ├── Thumbs.db │ ├── favicon_standart.png │ ├── logotype │ │ ├── piston │ │ │ ├── top.png │ │ │ ├── Thumbs.db │ │ │ ├── back.png │ │ │ ├── front.png │ │ │ ├── left.png │ │ │ ├── right.png │ │ │ └── bottom.png │ │ ├── classic │ │ │ ├── back.png │ │ │ ├── left.png │ │ │ ├── top.png │ │ │ ├── bottom.png │ │ │ ├── front.png │ │ │ └── right.png │ │ ├── diamond │ │ │ ├── all.png │ │ │ └── Thumbs.db │ │ ├── emerald │ │ │ ├── all.png │ │ │ └── Thumbs.db │ │ ├── mc-modding │ │ │ ├── back.png │ │ │ ├── left.png │ │ │ ├── top.png │ │ │ ├── bottom.png │ │ │ ├── front.png │ │ │ └── right.png │ │ └── cobblestone-mossy │ │ │ ├── all.png │ │ │ └── Thumbs.db │ ├── favicon_standart_light.png │ ├── fonts │ │ ├── Helvetica │ │ │ ├── HelveticaBold.woff │ │ │ ├── HelveticaLight.woff │ │ │ └── HelveticaRegular.woff │ │ ├── Myriad-Pro │ │ │ └── MyriadPro-Bold.otf │ │ └── Open-Sans │ │ │ ├── OpenSans-Italic.ttf │ │ │ ├── OpenSans-Regular.ttf │ │ │ ├── OpenSans-Semibold.ttf │ │ │ └── OpenSans-SemiboldItalic.ttf │ ├── libs │ │ └── highlight │ │ │ └── styles │ │ │ ├── pojoaque.jpg │ │ │ ├── school-book.png │ │ │ ├── brown-papersq.png │ │ │ ├── darkula.css │ │ │ ├── ascetic.css │ │ │ ├── mono-blue.css │ │ │ ├── dark.css │ │ │ ├── androidstudio.css │ │ │ ├── codepen-embed.css │ │ │ ├── brown-paper.css │ │ │ ├── vs.css │ │ │ ├── far.css │ │ │ ├── arta.css │ │ │ ├── ir-black.css │ │ │ ├── color-brewer.css │ │ │ ├── magula.css │ │ │ ├── github-gist.css │ │ │ ├── monokai.css │ │ │ ├── darcula.css │ │ │ ├── tomorrow.css │ │ │ ├── zenburn.css │ │ │ ├── school-book.css │ │ │ ├── ocean.css │ │ │ ├── paraiso-dark.css │ │ │ ├── paraiso-light.css │ │ │ ├── dracula.css │ │ │ ├── qtcreator_dark.css │ │ │ ├── qtcreator_light.css │ │ │ ├── rainbow.css │ │ │ ├── kimbie.dark.css │ │ │ ├── kimbie.light.css │ │ │ ├── atelier-dune-dark.css │ │ │ ├── monokai-sublime.css │ │ │ ├── atelier-dune-light.css │ │ │ ├── atelier-heath-dark.css │ │ │ ├── atelier-heath-light.css │ │ │ ├── atelier-forest-dark.css │ │ │ ├── atelier-forest-light.css │ │ │ ├── tomorrow-night-bright.css │ │ │ ├── tomorrow-night-eighties.css │ │ │ ├── atelier-seaside-dark.css │ │ │ ├── atelier-seaside-light.css │ │ │ ├── hopscotch.css │ │ │ ├── atelier-lakeside-dark.css │ │ │ ├── atelier-lakeside-light.css │ │ │ ├── arduino-light.css │ │ │ ├── googlecode.css │ │ │ ├── xt256.css │ │ │ ├── atelier-sulphurpool-dark.css │ │ │ ├── atelier-sulphurpool-light.css │ │ │ ├── obsidian.css │ │ │ ├── foundation.css │ │ │ ├── tomorrow-night.css │ │ │ ├── xcode.css │ │ │ ├── tomorrow-night-blue.css │ │ │ ├── pojoaque.css │ │ │ ├── solarized-dark.css │ │ │ ├── solarized-light.css │ │ │ ├── docco.css │ │ │ ├── idea.css │ │ │ ├── atelier-cave-dark.css │ │ │ ├── atelier-cave-light.css │ │ │ └── atelier-estuary-dark.css │ ├── g-styles │ │ ├── global.scss │ │ └── fonts.scss │ └── _tools │ │ └── processes │ │ └── build-must-have.js ├── index │ └── images │ │ └── link_to_friend.png └── book │ ├── templates │ ├── index.mustache │ └── partials │ │ ├── head │ │ ├── open-graph.mustache │ │ └── libs.mustache │ │ └── head.mustache │ ├── styles │ └── book.scss │ ├── scripts │ ├── classes │ │ ├── Layout.js │ │ └── Utils.js │ ├── proper-anchor.js │ ├── site-menu-call-controller.js │ └── book-nav-call-controller.js │ └── _tools │ └── views │ └── head.view.js ├── wiki └── creating_article │ └── cats.png ├── config.yml ├── deploy.sh ├── .travis.yml ├── package.json └── .gitignore /book/1.11+/bukkit/base/permissions/article.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/scoreboard/article.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gitattribute: -------------------------------------------------------------------------------- 1 | site/must-have/libs/*.css linguist-vendored=false -------------------------------------------------------------------------------- /book/1.11+/bukkit/other/new/article.md: -------------------------------------------------------------------------------- 1 | ## --- 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/packets/article.md: -------------------------------------------------------------------------------- 1 | ## Пакеты 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /book/1.11+/forge/item/importing_model/article.md: -------------------------------------------------------------------------------- 1 | # Импорт 3D модели 2 | 3 | TODO -------------------------------------------------------------------------------- /book/config.yml: -------------------------------------------------------------------------------- 1 | # Default Minecraft version directory 2 | default-version-dir: 1.12+ 3 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/bundle/article.md: -------------------------------------------------------------------------------- 1 | ## Связка плагина с BungeeCord 2 | 3 | TODO 4 | -------------------------------------------------------------------------------- /book/1.11+/forge/base/advanced_mcmod_info/article.md: -------------------------------------------------------------------------------- 1 | # Продвинутый mcmod.info 2 | 3 | TODO -------------------------------------------------------------------------------- /book/1.11+/bukkit/other/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Прочее 2 | 3 | articles-order: 4 | - new 5 | -------------------------------------------------------------------------------- /book/1.11+/bungeecord/config.yml: -------------------------------------------------------------------------------- 1 | api-name: BungeeCord 2 | 3 | categories-order: 4 | - prep 5 | -------------------------------------------------------------------------------- /book/1.12+/forge/gui/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Предметы 2 | 3 | articles-order: 4 | - base -------------------------------------------------------------------------------- /book/1.11+/bukkit/config.yml: -------------------------------------------------------------------------------- 1 | api-name: Bukkit 2 | 3 | categories-order: 4 | - prep 5 | - base 6 | -------------------------------------------------------------------------------- /book/1.12+/config.yml: -------------------------------------------------------------------------------- 1 | number: 1.12+ 2 | 3 | dev-state: Release 4 | 5 | default-api-dir: forge 6 | -------------------------------------------------------------------------------- /book/1.12+/forge/lang/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Локализация 2 | 3 | articles-order: 4 | - base 5 | -------------------------------------------------------------------------------- /book/1.12+/forge/tileentity/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Tile Entity 2 | 3 | articles-order: 4 | - base -------------------------------------------------------------------------------- /book/1.7.10/forge/item/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Предметы 2 | 3 | articles-order: 4 | - burn 5 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/prep/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Подготовка 2 | 3 | articles-order: 4 | - install 5 | -------------------------------------------------------------------------------- /book/1.11+/forge/local/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Локализация 2 | 3 | articles-order: 4 | - index 5 | -------------------------------------------------------------------------------- /book/1.11+/bungeecord/prep/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Подготовка 2 | 3 | articles-order: 4 | - install 5 | -------------------------------------------------------------------------------- /book/1.11+/forge/gui/config.yml: -------------------------------------------------------------------------------- 1 | category-title: GUI 2 | 3 | articles-order: 4 | - custom_inventory 5 | -------------------------------------------------------------------------------- /site/must-have/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/Thumbs.db -------------------------------------------------------------------------------- /book/1.12+/forge/creativetab/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Вкладка в креативе 2 | 3 | articles-order: 4 | - base 5 | -------------------------------------------------------------------------------- /book/1.12+/forge/events/config.yml: -------------------------------------------------------------------------------- 1 | category-title: События 2 | 3 | articles-order: 4 | - base 5 | - table 6 | -------------------------------------------------------------------------------- /book/1.12+/forge/plant/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Растения 2 | 3 | articles-order: 4 | - base 5 | - mod_cave_plant -------------------------------------------------------------------------------- /wiki/creating_article/cats.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/wiki/creating_article/cats.png -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- 1 | # Global site URL 2 | url: http://mcmodding.ru 3 | 4 | # Engine version 5 | version: '1.1.1' 6 | 7 | # START! 8 | -------------------------------------------------------------------------------- /site/must-have/favicon_standart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/favicon_standart.png -------------------------------------------------------------------------------- /book/1.12+/forge/achievements/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Достижения 2 | 3 | articles-order: 4 | - prep 5 | - base 6 | - recipes 7 | -------------------------------------------------------------------------------- /book/1.12+/forge/gui/base/images/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/gui/base/images/1.png -------------------------------------------------------------------------------- /site/index/images/link_to_friend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/index/images/link_to_friend.png -------------------------------------------------------------------------------- /site/must-have/logotype/piston/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/piston/top.png -------------------------------------------------------------------------------- /book/1.11+/forge/block/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Блок 3 | 4 | # Articles order 5 | articles-order: 6 | - creating_block -------------------------------------------------------------------------------- /site/must-have/logotype/classic/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/classic/back.png -------------------------------------------------------------------------------- /site/must-have/logotype/classic/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/classic/left.png -------------------------------------------------------------------------------- /site/must-have/logotype/classic/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/classic/top.png -------------------------------------------------------------------------------- /site/must-have/logotype/diamond/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/diamond/all.png -------------------------------------------------------------------------------- /site/must-have/logotype/emerald/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/emerald/all.png -------------------------------------------------------------------------------- /site/must-have/logotype/piston/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/piston/Thumbs.db -------------------------------------------------------------------------------- /site/must-have/logotype/piston/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/piston/back.png -------------------------------------------------------------------------------- /site/must-have/logotype/piston/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/piston/front.png -------------------------------------------------------------------------------- /site/must-have/logotype/piston/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/piston/left.png -------------------------------------------------------------------------------- /site/must-have/logotype/piston/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/piston/right.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/debug/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/debug/images/run.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/base/images/corn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/base/images/corn.png -------------------------------------------------------------------------------- /site/must-have/favicon_standart_light.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/favicon_standart_light.png -------------------------------------------------------------------------------- /site/must-have/logotype/classic/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/classic/bottom.png -------------------------------------------------------------------------------- /site/must-have/logotype/classic/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/classic/front.png -------------------------------------------------------------------------------- /site/must-have/logotype/classic/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/classic/right.png -------------------------------------------------------------------------------- /site/must-have/logotype/diamond/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/diamond/Thumbs.db -------------------------------------------------------------------------------- /site/must-have/logotype/emerald/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/emerald/Thumbs.db -------------------------------------------------------------------------------- /site/must-have/logotype/mc-modding/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/mc-modding/back.png -------------------------------------------------------------------------------- /site/must-have/logotype/mc-modding/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/mc-modding/left.png -------------------------------------------------------------------------------- /site/must-have/logotype/mc-modding/top.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/mc-modding/top.png -------------------------------------------------------------------------------- /site/must-have/logotype/piston/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/piston/bottom.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/debug/images/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/debug/images/start.png -------------------------------------------------------------------------------- /book/1.12+/forge/craftsmeltingandbrewing/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Рецепты 2 | 3 | articles-order: 4 | - craft 5 | # - smelting 6 | # - brewing 7 | -------------------------------------------------------------------------------- /book/1.7.10/forge/advanced/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Продвинутые статьи 3 | 4 | # Articles order 5 | articles-order: 6 | - buffs -------------------------------------------------------------------------------- /site/must-have/logotype/mc-modding/bottom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/mc-modding/bottom.png -------------------------------------------------------------------------------- /site/must-have/logotype/mc-modding/front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/mc-modding/front.png -------------------------------------------------------------------------------- /site/must-have/logotype/mc-modding/right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/mc-modding/right.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/debug/images/remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/debug/images/remote.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/off_skin/images/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/off_skin/images/Thumbs.db -------------------------------------------------------------------------------- /book/1.12+/forge/item/base/images/face_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/base/images/face_first.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/base/images/face_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/base/images/face_three.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/burn/images/customfuel.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/burn/images/customfuel.rar -------------------------------------------------------------------------------- /book/1.12+/forge/item/nbt/article.md: -------------------------------------------------------------------------------- 1 | # Хранение в предмете 2 | 3 | ## Основа 4 | 5 | TODO 6 | 7 | ## Хранение вещей - Рюкзак 8 | 9 | TODO 10 | -------------------------------------------------------------------------------- /book/1.12+/forge/plant/base/images/corn_seed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/base/images/corn_seed.png -------------------------------------------------------------------------------- /book/1.7.10/forge/advanced/buffs/images/buff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.7.10/forge/advanced/buffs/images/buff.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/debug/images/ecl_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/debug/images/ecl_config.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/debug/images/ecl_debug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/debug/images/ecl_debug.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/export/images/ecl_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/export/images/ecl_final.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/install/images/installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/install/images/installer.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/setup_eclipse/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/setup_eclipse/images/run.png -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/layers/images/quiver.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/advanced/layers/images/quiver.png -------------------------------------------------------------------------------- /book/1.12+/forge/block/base/images/face_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/block/base/images/face_first.png -------------------------------------------------------------------------------- /book/1.12+/forge/block/base/images/face_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/block/base/images/face_three.png -------------------------------------------------------------------------------- /book/1.12+/forge/creativetab/base/images/tab_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/creativetab/base/images/tab_1.png -------------------------------------------------------------------------------- /book/1.12+/forge/creativetab/base/images/tab_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/creativetab/base/images/tab_2.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/armor/images/model_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/armor/images/model_armor.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/install/images/installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/install/images/installer.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/setup_eclipse/images/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/setup_eclipse/images/run.png -------------------------------------------------------------------------------- /book/1.7.10/forge/item/burn/images/customfuel.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.7.10/forge/item/burn/images/customfuel.rar -------------------------------------------------------------------------------- /book/1.7.10/forge/other/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Дополнительно 3 | 4 | # Articles order 5 | articles-order: 6 | - access_transformers -------------------------------------------------------------------------------- /site/must-have/fonts/Helvetica/HelveticaBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/fonts/Helvetica/HelveticaBold.woff -------------------------------------------------------------------------------- /site/must-have/fonts/Helvetica/HelveticaLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/fonts/Helvetica/HelveticaLight.woff -------------------------------------------------------------------------------- /site/must-have/fonts/Myriad-Pro/MyriadPro-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/fonts/Myriad-Pro/MyriadPro-Bold.otf -------------------------------------------------------------------------------- /site/must-have/fonts/Open-Sans/OpenSans-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/fonts/Open-Sans/OpenSans-Italic.ttf -------------------------------------------------------------------------------- /site/must-have/libs/highlight/styles/pojoaque.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/libs/highlight/styles/pojoaque.jpg -------------------------------------------------------------------------------- /site/must-have/logotype/cobblestone-mossy/all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/cobblestone-mossy/all.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/database/article.md: -------------------------------------------------------------------------------- 1 | # База данных - MySQL 2 | 3 | TODO 4 | 5 | 6 | # База данных - MongoDB 7 | 8 | 9 | # База данных - NoSQL 10 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/debug/images/configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/debug/images/configuration.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/debug/images/ecl_setting.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/debug/images/ecl_setting.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/export/images/ecl_export.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/export/images/ecl_export.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/export/images/intellij_jar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/export/images/intellij_jar.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/prep/install/images/newproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/prep/install/images/newproject.png -------------------------------------------------------------------------------- /book/1.11+/forge/example_mods/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Примеры модификаций 3 | 4 | # Articles order 5 | articles-order: 6 | - small_treasures -------------------------------------------------------------------------------- /book/1.11+/forge/prep/install/images/download_mdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/install/images/download_mdk.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/off_skin/images/forge-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/off_skin/images/forge-api.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/setup_idea/images/importing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/setup_idea/images/importing.png -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/buffs/images/bufficons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/advanced/buffs/images/bufficons.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/armor/images/armor_layer_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/armor/images/armor_layer_1.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/armor/images/armor_layer_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/armor/images/armor_layer_2.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/armor/images/equipped_armor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/armor/images/equipped_armor.png -------------------------------------------------------------------------------- /book/1.12+/forge/other/jei_integration/images/jei.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/jei_integration/images/jei.rar -------------------------------------------------------------------------------- /book/1.12+/forge/plant/base/images/demonstration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/base/images/demonstration.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/src.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/src.zip -------------------------------------------------------------------------------- /book/1.12+/forge/prep/install/images/download_mdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/install/images/download_mdk.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/off_skin/images/forge-api.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/off_skin/images/forge-api.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/setup_idea/images/importing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/setup_idea/images/importing.png -------------------------------------------------------------------------------- /book/1.7.10/forge/advanced/buffs/images/bufficons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.7.10/forge/advanced/buffs/images/bufficons.png -------------------------------------------------------------------------------- /site/must-have/fonts/Helvetica/HelveticaRegular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/fonts/Helvetica/HelveticaRegular.woff -------------------------------------------------------------------------------- /site/must-have/fonts/Open-Sans/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/fonts/Open-Sans/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /site/must-have/fonts/Open-Sans/OpenSans-Semibold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/fonts/Open-Sans/OpenSans-Semibold.ttf -------------------------------------------------------------------------------- /site/must-have/libs/highlight/styles/school-book.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/libs/highlight/styles/school-book.png -------------------------------------------------------------------------------- /site/must-have/logotype/cobblestone-mossy/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/logotype/cobblestone-mossy/Thumbs.db -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/export/images/ecl_exp_select.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/export/images/ecl_exp_select.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/export/images/intellij_final.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/export/images/intellij_final.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/prep/install/images/libssettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/prep/install/images/libssettings.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/prep/install/images/projsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/prep/install/images/projsettings.png -------------------------------------------------------------------------------- /book/1.11+/forge/gui/custom_inventory/images/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/gui/custom_inventory/images/result.png -------------------------------------------------------------------------------- /book/1.11+/forge/item/rarity/images/legendary_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/item/rarity/images/legendary_test.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/off_skin/images/off_skin_idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/off_skin/images/off_skin_idea.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/setup_idea/images/run_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/setup_idea/images/run_config.png -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/buffs/images/broken-bone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/advanced/buffs/images/broken-bone.png -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/keybinds/images/keybinds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/advanced/keybinds/images/keybinds.png -------------------------------------------------------------------------------- /book/1.12+/forge/block/base/images/model_face_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/block/base/images/model_face_first.png -------------------------------------------------------------------------------- /book/1.12+/forge/block/base/images/model_face_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/block/base/images/model_face_three.png -------------------------------------------------------------------------------- /book/1.12+/forge/block/base/images/model_on_ground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/block/base/images/model_on_ground.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/base/images/model_face_first.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/base/images/model_face_first.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/base/images/model_face_three.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/base/images/model_face_three.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/rarity/images/legendary_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/rarity/images/legendary_test.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/result.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/result.jpg -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/scheme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/scheme.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/off_skin/images/off_skin_idea.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/off_skin/images/off_skin_idea.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/setup_idea/images/run_config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/setup_idea/images/run_config.png -------------------------------------------------------------------------------- /book/1.12+/forge/tileentity/base/images/decremented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/tileentity/base/images/decremented.png -------------------------------------------------------------------------------- /book/1.12+/forge/tileentity/base/images/incremented.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/tileentity/base/images/incremented.png -------------------------------------------------------------------------------- /book/1.7.10/forge/config.yml: -------------------------------------------------------------------------------- 1 | # API name 2 | api-name: Forge 3 | 4 | # Categories order 5 | categories-order: 6 | - base 7 | - item 8 | - advanced 9 | - other -------------------------------------------------------------------------------- /site/must-have/libs/highlight/styles/brown-papersq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/libs/highlight/styles/brown-papersq.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/export/images/intellij_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/export/images/intellij_settings.png -------------------------------------------------------------------------------- /book/1.11+/bungeecord/prep/install/images/libssettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bungeecord/prep/install/images/libssettings.png -------------------------------------------------------------------------------- /book/1.11+/bungeecord/prep/install/images/newproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bungeecord/prep/install/images/newproject.png -------------------------------------------------------------------------------- /book/1.11+/bungeecord/prep/install/images/projsettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bungeecord/prep/install/images/projsettings.png -------------------------------------------------------------------------------- /book/1.11+/forge/item/creating_item/images/item_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/item/creating_item/images/item_test.png -------------------------------------------------------------------------------- /book/1.11+/forge/other/access_transformers/images/root.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/other/access_transformers/images/root.zip -------------------------------------------------------------------------------- /book/1.11+/forge/other/sources/images/sources_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/other/sources/images/sources_location.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/off_skin/images/off_skin_eclipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/off_skin/images/off_skin_eclipse.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/setup_idea/images/gradle_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/setup_idea/images/gradle_tasks.png -------------------------------------------------------------------------------- /book/1.12+/forge/other/access_transformers/images/root.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/access_transformers/images/root.zip -------------------------------------------------------------------------------- /book/1.12+/forge/other/sources/images/sources_location.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/sources/images/sources_location.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/off_skin/images/off_skin_eclipse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/off_skin/images/off_skin_eclipse.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/problems/images/setup_gradle_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/problems/images/setup_gradle_1.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/problems/images/setup_gradle_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/problems/images/setup_gradle_2.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/problems/images/setup_gradle_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/problems/images/setup_gradle_3.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/setup_idea/images/gradle_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/setup_idea/images/gradle_tasks.png -------------------------------------------------------------------------------- /book/1.7.10/forge/base/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Основы Forge 3 | 4 | # Articles order 5 | articles-order: 6 | - first_steps 7 | - proxy 8 | - setup -------------------------------------------------------------------------------- /site/must-have/fonts/Open-Sans/OpenSans-SemiboldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/site/must-have/fonts/Open-Sans/OpenSans-SemiboldItalic.ttf -------------------------------------------------------------------------------- /book/1.11+/forge/block/creating_block/images/block_test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/block/creating_block/images/block_test.png -------------------------------------------------------------------------------- /book/1.11+/forge/other/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Дополнительно 3 | 4 | # Articles order 5 | articles-order: 6 | - sources 7 | - access_transformers -------------------------------------------------------------------------------- /book/1.11+/forge/prep/install/images/download_installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/install/images/download_installer.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/setup_eclipse/images/gradle_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/setup_eclipse/images/gradle_tasks.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/setup_idea/images/import_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/prep/setup_idea/images/import_settings.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_crops0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_crops0.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_crops1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_crops1.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_crops2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_crops2.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_crops3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_crops3.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_crops4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_crops4.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_crops5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_crops5.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_crops6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_crops6.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_crops7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_crops7.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_plant.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_plant.png -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_seeds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_seeds.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/install/images/download_installer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/install/images/download_installer.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/setup_eclipse/images/gradle_tasks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/setup_eclipse/images/gradle_tasks.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/setup_idea/images/import_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/prep/setup_idea/images/import_settings.png -------------------------------------------------------------------------------- /book/1.7.10/forge/advanced/buffs/images/test-effect-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.7.10/forge/advanced/buffs/images/test-effect-demo.png -------------------------------------------------------------------------------- /book/1.7.10/forge/other/access_transformers/images/root.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.7.10/forge/other/access_transformers/images/root.zip -------------------------------------------------------------------------------- /book/1.11+/forge/base/loading_stages/images/loading_stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/base/loading_stages/images/loading_stages.png -------------------------------------------------------------------------------- /book/1.11+/forge/gui/custom_inventory/images/inventory_src.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/gui/custom_inventory/images/inventory_src.rar -------------------------------------------------------------------------------- /book/1.11+/forge/gui/custom_inventory/images/slots_indexes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/gui/custom_inventory/images/slots_indexes.png -------------------------------------------------------------------------------- /book/1.11+/forge/item/creating_item/images/itemWithTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/item/creating_item/images/itemWithTexture.png -------------------------------------------------------------------------------- /book/1.11+/forge/item/creating_item/images/itemWithoutModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/item/creating_item/images/itemWithoutModel.png -------------------------------------------------------------------------------- /book/1.12+/forge/base/loading_stages/images/loading_stages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/base/loading_stages/images/loading_stages.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/export/images/intellij_moduleSettings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/bukkit/base/export/images/intellij_moduleSettings.png -------------------------------------------------------------------------------- /book/1.11+/config.yml: -------------------------------------------------------------------------------- 1 | # Version number 2 | number: 1.11+ 3 | 4 | # Development state: Release, Beta, Alpha 5 | dev-state: Release 6 | 7 | # Default API directory 8 | default-api-dir: forge -------------------------------------------------------------------------------- /book/1.11+/forge/block/creating_block/images/blockWithTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/block/creating_block/images/blockWithTexture.png -------------------------------------------------------------------------------- /book/1.11+/forge/gui/custom_inventory/images/key_in_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/gui/custom_inventory/images/key_in_settings.png -------------------------------------------------------------------------------- /book/1.11+/forge/gui/custom_inventory/images/slot_size_coords.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/gui/custom_inventory/images/slot_size_coords.png -------------------------------------------------------------------------------- /book/1.11+/forge/item/creating_item/images/itemWithoutTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/item/creating_item/images/itemWithoutTexture.png -------------------------------------------------------------------------------- /book/1.12+/forge/base/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Основы Forge 2 | 3 | articles-order: 4 | - mod_structure 5 | - mod_annotation 6 | - loading_stages 7 | - proxy 8 | - build_mod 9 | -------------------------------------------------------------------------------- /book/1.12+/forge/block/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Блоки 2 | 3 | articles-order: 4 | - base 5 | # - blockstates 6 | # - metadata 7 | # - plants 8 | # - crops 9 | # - fluids 10 | -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/images/cave_grass_demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/plant/mod_cave_plant/images/cave_grass_demo.png -------------------------------------------------------------------------------- /book/1.7.10/config.yml: -------------------------------------------------------------------------------- 1 | # Version number 2 | number: 1.7.10 3 | 4 | # Development state: Release, Beta, Alpha 5 | dev-state: Release 6 | 7 | # Default API directory 8 | default-api-dir: forge -------------------------------------------------------------------------------- /book/1.11+/forge/block/creating_block/images/blockWithoutModel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/block/creating_block/images/blockWithoutModel.png -------------------------------------------------------------------------------- /book/1.11+/forge/block/creating_block/images/blockWithoutTexture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.11+/forge/block/creating_block/images/blockWithoutTexture.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/burn/images/burning_item_demonstration_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/burn/images/burning_item_demonstration_1.png -------------------------------------------------------------------------------- /book/1.12+/forge/item/burn/images/burning_item_demonstration_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/item/burn/images/burning_item_demonstration_2.png -------------------------------------------------------------------------------- /book/1.12+/forge/other/generation_lags/images/cascade_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/generation_lags/images/cascade_generation.png -------------------------------------------------------------------------------- /book/1.12+/forge/other/generation_lags/images/normal_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/generation_lags/images/normal_generation.png -------------------------------------------------------------------------------- /book/1.7.10/forge/item/burn/images/burning_item_demonstration_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.7.10/forge/item/burn/images/burning_item_demonstration_1.png -------------------------------------------------------------------------------- /book/1.7.10/forge/item/burn/images/burning_item_demonstration_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.7.10/forge/item/burn/images/burning_item_demonstration_2.png -------------------------------------------------------------------------------- /book/1.11+/forge/prep/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Подготовка 3 | 4 | # Articles order 5 | articles-order: 6 | - install 7 | - setup_idea 8 | - setup_eclipse 9 | - off_skin -------------------------------------------------------------------------------- /book/1.12+/forge/other/jei_integration/images/drops_demonstration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/jei_integration/images/drops_demonstration.png -------------------------------------------------------------------------------- /site/must-have/g-styles/global.scss: -------------------------------------------------------------------------------- 1 | /* Resetting styles */ 2 | html, body { 3 | margin: 0; border: 0; padding: 0; 4 | } 5 | 6 | /* Removing outline */ 7 | a, select, button { 8 | outline: none; 9 | } -------------------------------------------------------------------------------- /book/1.12+/forge/other/generation_lags/images/generation_out_of_chunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/generation_lags/images/generation_out_of_chunk.png -------------------------------------------------------------------------------- /book/1.12+/forge/other/generation_lags/images/translated_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/generation_lags/images/translated_generation.png -------------------------------------------------------------------------------- /book/1.12+/forge/other/jei_integration/images/crafter_demonstration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/jei_integration/images/crafter_demonstration.png -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Продвинутые статьи 2 | 3 | articles-order: 4 | - layers 5 | - keybinds 6 | - buffs 7 | - sounds 8 | # - commands 9 | # - userupdates 10 | -------------------------------------------------------------------------------- /book/1.12+/forge/other/generation_lags/images/generation_start_position.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/generation_lags/images/generation_start_position.png -------------------------------------------------------------------------------- /book/1.11+/bukkit/other/new/config.yml: -------------------------------------------------------------------------------- 1 | title: --- 2 | 3 | description: > 4 | --- 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/other/generation_lags/images/normal_generation_no_edges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mc-modding/mc-modding-book/HEAD/book/1.12+/forge/other/generation_lags/images/normal_generation_no_edges.png -------------------------------------------------------------------------------- /book/1.12+/forge/prep/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Подготовка 3 | 4 | # Articles order 5 | articles-order: 6 | - install 7 | - setup_idea 8 | - setup_eclipse 9 | - off_skin 10 | - problems -------------------------------------------------------------------------------- /site/must-have/libs/highlight/styles/darkula.css: -------------------------------------------------------------------------------- 1 | /* 2 | Deprecated due to a typo in the name and left here for compatibility purpose only. 3 | Please use darcula.css instead. 4 | */ 5 | 6 | @import url('darcula.css'); 7 | -------------------------------------------------------------------------------- /book/1.11+/forge/config.yml: -------------------------------------------------------------------------------- 1 | # API name 2 | api-name: Forge 3 | 4 | # Categories order 5 | categories-order: 6 | - prep 7 | - base 8 | - item 9 | - block 10 | - gui 11 | - local 12 | - other 13 | -------------------------------------------------------------------------------- /book/1.12+/forge/gui/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Локализация вещей 2 | 3 | description: > 4 | Создание простой Gui 5 | contributors: 6 | - 7 | name: Will0376 8 | role: Автор 9 | github: https://github.com/Will0376 -------------------------------------------------------------------------------- /book/1.12+/forge/other/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Дополнительно 3 | 4 | # Articles order 5 | articles-order: 6 | - sources 7 | - jei_integration 8 | - access_transformers 9 | - generation_lags -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/commands/config.yml: -------------------------------------------------------------------------------- 1 | title: Команды 2 | 3 | description: > 4 | Создаём свои команды 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/export/config.yml: -------------------------------------------------------------------------------- 1 | title: Экспорт 2 | 3 | description: > 4 | Экспортируем наш плагин 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/layers/config.yml: -------------------------------------------------------------------------------- 1 | title: Слои 2 | 3 | description: > 4 | Создание собственного слоя 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/armor/config.yml: -------------------------------------------------------------------------------- 1 | title: Броня 2 | 3 | description: > 4 | Создание собственной брони 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Предметы 2 | 3 | articles-order: 4 | - base 5 | - food 6 | - tools 7 | - repair 8 | - armor 9 | - metadata 10 | - nbt 11 | - loot 12 | - rarity 13 | - burn 14 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/database/config.yml: -------------------------------------------------------------------------------- 1 | title: База данных 2 | 3 | description: > 4 | Работа с базой данных 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/events/config.yml: -------------------------------------------------------------------------------- 1 | title: События 2 | 3 | description: > 4 | Использование событий в плагине 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/packets/config.yml: -------------------------------------------------------------------------------- 1 | title: Пакеты 2 | 3 | description: > 4 | Отправляем пакеты на клиент 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/sounds/config.yml: -------------------------------------------------------------------------------- 1 | title: Звуки 2 | 3 | description: > 4 | Добавление своих звуков в игру 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /site/must-have/_tools/processes/build-must-have.js: -------------------------------------------------------------------------------- 1 | global.is_local = process.argv.includes('-local'); 2 | 3 | const rimraf = require('rimraf'); 4 | 5 | /* Cleaning 'compiled' directory */ 6 | if(global.is_local) 7 | rimraf.sync(`compiled`); -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/config/config.yml: -------------------------------------------------------------------------------- 1 | title: Конфигурация 2 | 3 | description: > 4 | Конфигурация нашего плагина 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/forge/item/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Предмет 3 | 4 | # Articles order 5 | articles-order: 6 | - creating_item 7 | - item_model 8 | - tools 9 | - importing_model 10 | - metadata 11 | - rarity 12 | -------------------------------------------------------------------------------- /book/1.12+/forge/block/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Создание блока 2 | 3 | description: > 4 | Создание собственного блока 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/repair/config.yml: -------------------------------------------------------------------------------- 1 | title: Починка инструментов 2 | 3 | description: > 4 | Починка инструментов 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/lang/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Локализация вещей 2 | 3 | description: > 4 | Создание локализации вещей 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/debug/config.yml: -------------------------------------------------------------------------------- 1 | title: Отладка плагина 2 | 3 | description: > 4 | Проводим отладку нашего плагина 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Создание предмета 2 | 3 | description: > 4 | Создание собственного предмета 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/nbt/config.yml: -------------------------------------------------------------------------------- 1 | title: Хранение в предмете 2 | 3 | description: > 4 | Хранение вещей, данных в предмете 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/craftsmeltingandbrewing/craft/config.yml: -------------------------------------------------------------------------------- 1 | title: Крафт 2 | 3 | description: > 4 | Создание собственного крафта 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/events/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Использование событий 2 | 3 | description: > 4 | Использование событий Forge API 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/food/config.yml: -------------------------------------------------------------------------------- 1 | title: Еда 2 | 3 | description: > 4 | Создание собственного предмета, который можно съесть 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/loot/config.yml: -------------------------------------------------------------------------------- 1 | title: Система лута 2 | 3 | description: > 4 | Система лута в сундуках и т.п. хранилищах 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/forge/base/config.yml: -------------------------------------------------------------------------------- 1 | # Category title 2 | category-title: Основы Forge 3 | 4 | # Articles order 5 | articles-order: 6 | - mod_structure 7 | - advanced_mcmod_info 8 | - mod_annotation 9 | - loading_stages 10 | - proxy 11 | - build_mod -------------------------------------------------------------------------------- /book/1.11+/forge/item/metadata/config.yml: -------------------------------------------------------------------------------- 1 | title: Метадата предмета 2 | 3 | description: > 4 | Создание множества подтипов предмета 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/achievements/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Создание достижения 2 | 3 | description: > 4 | Создание собственных достижений. 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/achievements/prep/config.yml: -------------------------------------------------------------------------------- 1 | title: Начало 2 | 3 | description: > 4 | Подготовка к созданию собственных достижений. 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/keybinds/config.yml: -------------------------------------------------------------------------------- 1 | title: Привязка клавиш 2 | 3 | description: > 4 | Создание собственной привязки клавиш 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/events/table/config.yml: -------------------------------------------------------------------------------- 1 | title: Таблица событий 2 | 3 | description: > 4 | Таблица всех событий доступных в Forge API 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/metadata/config.yml: -------------------------------------------------------------------------------- 1 | title: Метадата 2 | 3 | description: > 4 | Создание из одного предмета, множество подтипов 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/tools/config.yml: -------------------------------------------------------------------------------- 1 | title: Инструменты и меч 2 | 3 | description: > 4 | Создание собственных инструментов и меча 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/config.yml: -------------------------------------------------------------------------------- 1 | category-title: Основное 2 | 3 | articles-order: 4 | - main 5 | - events 6 | - commands 7 | - config 8 | - permissions 9 | - debug 10 | - bundle 11 | - scoreboard 12 | - packets 13 | - database 14 | - export -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/scoreboard/config.yml: -------------------------------------------------------------------------------- 1 | title: Scoreboard 2 | 3 | description: > 4 | Использование Scoreboard для вывода информации 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/block/blockstates/config.yml: -------------------------------------------------------------------------------- 1 | title: Состояние блока 2 | 3 | description: > 4 | Добавление собственных состояний блоков. 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/creativetab/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Создание вкладки в креативе. 2 | 3 | description: > 4 | Создание вкладки в креативе. 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/bundle/config.yml: -------------------------------------------------------------------------------- 1 | title: Связка с BungeeCord 2 | 3 | description: > 4 | Отправляем пакеты на BungeeCord и получаем ответ 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/permissions/config.yml: -------------------------------------------------------------------------------- 1 | title: Использование прав 2 | 3 | description: > 4 | Использование прав для тех или иных случаев 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/achievements/recipes/config.yml: -------------------------------------------------------------------------------- 1 | title: Получение рецептов 2 | 3 | description: > 4 | Создание собственной выдачи рецептов с наградами. 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/base/main/config.yml: -------------------------------------------------------------------------------- 1 | title: Главный класс 2 | 3 | description: > 4 | Основной класс в котором будет происходить регистрация команд, событий и т.д. 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/item/burn/config.yml: -------------------------------------------------------------------------------- 1 | title: Предмет с временем горения 2 | 3 | description: > 4 | Создание своего предмета, который может использоваться в печке 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /site/book/templates/index.mustache: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 | 5 | {{> partials/head }} 6 | 7 | 8 | 9 | 10 | {{> partials/header }} 11 | {{> partials/nav }} 12 | {{> partials/article }} 13 | 14 | {{> partials/analytics }} 15 | 16 | 17 | -------------------------------------------------------------------------------- /book/1.7.10/forge/item/burn/config.yml: -------------------------------------------------------------------------------- 1 | title: Предмет с временем горения 2 | 3 | description: > 4 | Создание своего предмета, который может использоваться в печке 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.11+/bukkit/prep/install/config.yml: -------------------------------------------------------------------------------- 1 | title: Установка программ 2 | 3 | description: > 4 | Установка необходимых программ, которые необходимы для разработки Bukkit плагинов. 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.11+/bungeecord/prep/install/config.yml: -------------------------------------------------------------------------------- 1 | title: Установка программ 2 | 3 | description: > 4 | Установка необходимых программ, которые необходимы для разработки BungeeCord плагинов. 5 | 6 | contributors: 7 | - 8 | name: Ivasik 9 | role: Автор 10 | github: https://github.com/Ivasik78 11 | -------------------------------------------------------------------------------- /book/1.7.10/forge/base/proxy/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Клиент и сервер 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Объяснение того, как Forge выполняет мод. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: hohserg 12 | role: Автор 13 | github: https://github.com/hohserg -------------------------------------------------------------------------------- /book/1.11+/forge/local/index/config.yml: -------------------------------------------------------------------------------- 1 | title: Локализация 2 | 3 | description: > 4 | Локализация для вещей 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Автор 10 | github: https://github.com/CMTV 11 | - 12 | name: Ivasik 13 | role: Автор 14 | github: https://github.com/Ivasik78 15 | -------------------------------------------------------------------------------- /book/1.11+/forge/other/access_transformers/config.yml: -------------------------------------------------------------------------------- 1 | title: Access Transformers 2 | 3 | description: > 4 | Удобный способ для получения доступа к приватным полям и методам без рефлексии 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/other/access_transformers/config.yml: -------------------------------------------------------------------------------- 1 | title: Access Transformers 2 | 3 | description: > 4 | Удобный способ для получения доступа к приватным полям и методам без рефлексии 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.7.10/forge/other/access_transformers/config.yml: -------------------------------------------------------------------------------- 1 | title: Access Transformers 2 | 3 | description: > 4 | Удобный способ для получения доступа к приватным полям и методам без рефлексии 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.7.10/forge/base/first_steps/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Первые шаги 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Объяснение того, как начать писать мод для forge. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: hohserg 12 | role: Автор 13 | github: https://github.com/hohserg 14 | -------------------------------------------------------------------------------- /site/book/templates/partials/head/open-graph.mustache: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /book/1.11+/forge/other/sources/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Исходники Minecraft 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Для чего нужен исходный код и ресуры Minecraft? Где их найти? 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/other/jei_integration/config.yml: -------------------------------------------------------------------------------- 1 | title: Интеграция с Just Enough Items 2 | 3 | description: > 4 | Реализация поддержки Just Enough Items (JEI) для своего мода с наглядными примерами. 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/other/sources/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Исходники Minecraft 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Для чего нужен исходный код и ресуры Minecraft? Где их найти? 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/prep/off_skin/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Собственный скин 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Подключение скина своего оффициального аккаунта при разработке модов. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/other/generation_lags/config.yml: -------------------------------------------------------------------------------- 1 | title: Каскадная генерация 2 | 3 | description: > 4 | С версии 1.11.2, модеры столкнулись с проблемой "каскадной генерации". Что это, чем опасно и как избежать? 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/prep/off_skin/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Собственный скин 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Подключение скина своего оффициального аккаунта при разработке модов. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/prep/setup_idea/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Использование Idea 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Настройка рабочего пространства для разраобтки модов с помощью IDE Idea. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/prep/setup_idea/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Использование Idea 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Настройка рабочего пространства для разраобтки модов с помощью IDE Idea. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.7.10/forge/base/setup/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Установка forge src 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Объяснение того, как установить forge src, чтобы начать писать моды 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: hohserg 12 | role: Автор 13 | github: https://github.com/hohserg -------------------------------------------------------------------------------- /book/1.11+/forge/base/mod_structure/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Структура мода 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Основные файлы любого Minecraft мода. Для чего они нужны и как их настроить. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/base/mod_structure/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Структура мода 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Основные файлы любого Minecraft мода. Для чего они нужны и как их настроить. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/item/importing_model/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Импорт 3D модели 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Создание и импортирование в Minecraft 3D модели, созданной в 3D редакторах. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/prep/install/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Установка программ 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Установка необходимых программ, которые необходимы для разработки Minecraft модов. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/prep/setup_eclipse/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Использование Eclipse 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Настройка рабочего пространства для разраобтки модов с помощью IDE Eclipse. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/prep/install/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Установка программ 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Установка необходимых программ, которые необходимы для разработки Minecraft модов. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/prep/setup_eclipse/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Использование Eclipse 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Настройка рабочего пространства для разраобтки модов с помощью IDE Eclipse. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/item/rarity/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Редкость предметов 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Создание группы редкости предметов, с помощью которой можно управлять цветом их названий. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/item/rarity/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Редкость предметов 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Создание группы редкости предметов, с помощью которой можно управлять цветом их названий. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/prep/problems/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Решение проблем 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Разбор и решение проблем, возникающих в процессе настройки среды разработки Minecraft модов. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/base/proxy/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Прокси 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Объяснение того, как Forge загружает мод в Minecraft. Названия стадий загрузки и советы по их использованию. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/item/item_model/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: JSON файл модели 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Создание собственной модели предмета. Настройка текстур и отображения. Наследование моделей. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/item/tools/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Инструменты 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Создание собственной кирки, топора, меча или мотыги. Создание своего типа материала для инструментов. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/base/proxy/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Прокси 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Объяснение того, как Forge загружает мод в Minecraft. Названия стадий загрузки и советы по их использованию. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/config.yml: -------------------------------------------------------------------------------- 1 | api-name: Forge 2 | 3 | categories-order: 4 | - prep 5 | - base 6 | - item 7 | - block 8 | - tileentity 9 | - creativetab 10 | - lang 11 | - events 12 | - craftsmeltingandbrewing 13 | - achievements 14 | - plant 15 | - gui 16 | # - sounds 17 | # - entities 18 | # - world 19 | - advanced 20 | - other 21 | -------------------------------------------------------------------------------- /book/1.11+/forge/gui/custom_inventory/config.yml: -------------------------------------------------------------------------------- 1 | title: Создание своего инвентаря 2 | 3 | description: > 4 | Создание отдельного инвентаря со своими слотами, который можно открыть по нажатию кнопки "H". Добавим возможность менять кнопку. 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /site/book/styles/book.scss: -------------------------------------------------------------------------------- 1 | @import '../../must-have/g-styles/const'; 2 | 3 | /* ================================================================================================================== */ 4 | /* Body */ 5 | /* ================================================================================================================== */ 6 | body { 7 | background: $bg-color; 8 | } -------------------------------------------------------------------------------- /book/1.11+/forge/base/build_mod/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Сборка мода 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Все, что связано с процессом сборки мода в конечный .jar файл: описание процесса, сама сборка, полезные настройки. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/base/build_mod/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Сборка мода 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Все, что связано с процессом сборки мода в конечный .jar файл: описание процесса, сама сборка, полезные настройки. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/base/advanced_mcmod_info/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Продвинутый mcmod.info 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Более подробная настройка mcmod.info файла с примерами. Пояснение некоторых неочевидных параметров. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/plant/mod_cave_plant/config.yml: -------------------------------------------------------------------------------- 1 | title: Мод — Пещерные растения 2 | 3 | description: > 4 | Мы создадим пещерную траву и сель-хоз культуру кардинально отличающуюся от всех растений майнкрафта — она растет только в темноте и умирает на свету. 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.11+/forge/base/loading_stages/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Стадии загрузки мода 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Объяснение того, как Forge загружает мод в Minecraft. Названия стадий загрузки и советы по их использованию. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.11+/forge/example_mods/small_treasures/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Small Treasures 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Создание модификации, которая добавляет сокровищницы с запертыми сундуками и ключи, которые их открывают. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/base/loading_stages/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Стадии загрузки мода 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Объяснение того, как Forge загружает мод в Minecraft. Названия стадий загрузки и советы по их использованию. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV -------------------------------------------------------------------------------- /book/1.12+/forge/tileentity/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Tile Entity 2 | 3 | description: > 4 | Обычный блок не может уникальные данные. Если мы хотим что бы наш блок содержал уникальные данные для каждого отдельно взятого экземпляра нам нужно использовать TileEntity. 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.12+/forge/plant/base/config.yml: -------------------------------------------------------------------------------- 1 | title: Агрокультуры 2 | 3 | description: > 4 | В этой статье речь пойдёт о создании собственных агрокультур. Будут рассмотрены примеры создания блока культуры, семян для выращивания и урожая - предмета, который будет выпадать с растения. 5 | 6 | contributors: 7 | - 8 | name: CMTV 9 | role: Перенес с форума 10 | github: https://github.com/CMTV 11 | -------------------------------------------------------------------------------- /book/1.11+/forge/block/creating_block/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Создание блока 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Создание собственного блока, присвоение текстуры и добавление его в игру. Добавление в креативную вкладку. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: Ivasik 12 | role: Автор 13 | github: https://github.com/Ivasik78 14 | - 15 | name: CMTV 16 | role: Автор 17 | github: https://github.com/CMTV 18 | -------------------------------------------------------------------------------- /book/1.11+/forge/item/creating_item/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Создание предмета 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Создание собственного предмета, присвоение текстуры и добавление его в игру. Добавление в креативную вкладку. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Автор 13 | github: https://github.com/CMTV 14 | - 15 | name: Ivasik 16 | role: Автор 17 | github: https://github.com/Ivasik78 18 | -------------------------------------------------------------------------------- /site/book/scripts/classes/Layout.js: -------------------------------------------------------------------------------- 1 | const LAYOUT_WIDTH = { 2 | MINI: 445, 3 | MOBILE: 650, 4 | TABLET: 850, 5 | STRETCH: 1100 6 | }; 7 | 8 | class Layout { 9 | /** 10 | * Проверка текущей разметки сайта 11 | * 12 | * @param layout ширина сайта в пикселях. 13 | * 14 | * @see Layout 15 | * 16 | * @returns {boolean} 17 | */ 18 | static is_layout(layout) { 19 | return window.matchMedia(`(max-width: ${layout}px)`).matches; 20 | } 21 | } -------------------------------------------------------------------------------- /book/1.11+/forge/base/mod_annotation/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Аннотация @Mod 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Разбор различных параметров аннотации 7 | Более подробная настройка mcmod.info файла с примерами. Пояснение некоторых неочевидных параметров. 8 | 9 | # Contributors 10 | contributors: 11 | - 12 | name: Ivasik 13 | role: Автор 14 | github: https://github.com/Ivasik78 15 | - 16 | name: CMTV 17 | role: Автор 18 | github: https://github.com/CMTV 19 | -------------------------------------------------------------------------------- /book/1.12+/forge/base/mod_annotation/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Аннотация @Mod 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | Разбор различных параметров аннотации 7 | Более подробная настройка mcmod.info файла с примерами. Пояснение некоторых неочевидных параметров. 8 | 9 | # Contributors 10 | contributors: 11 | - 12 | name: Ivasik 13 | role: Автор 14 | github: https://github.com/Ivasik78 15 | - 16 | name: CMTV 17 | role: Автор 18 | github: https://github.com/CMTV 19 | -------------------------------------------------------------------------------- /book/1.12+/forge/advanced/buffs/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Система временных эффектов 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | В данном туториале описан процесс создания собственной системы временных эффектов (баффов), которая будет работать со всеми существами(наследниками EntityLivingBase). Работают они так же, как и ванильные эффекты зелий, однако имеют ряд улучшений и оптимизаций. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Перенес с форума 13 | github: https://github.com/CMTV 14 | -------------------------------------------------------------------------------- /book/1.7.10/forge/advanced/buffs/config.yml: -------------------------------------------------------------------------------- 1 | # Title 2 | title: Система временных эффектов 3 | 4 | # Description (~160 symbols) 5 | description: > 6 | В данном туториале описан процесс создания собственной системы временных эффектов (баффов), которая будет работать со всеми существами(наследниками EntityLivingBase). Работают они так же, как и ванильные эффекты зелий, однако имеют ряд улучшений и оптимизаций. 7 | 8 | # Contributors 9 | contributors: 10 | - 11 | name: CMTV 12 | role: Перенес с форума 13 | github: https://github.com/CMTV 14 | -------------------------------------------------------------------------------- /book/1.11+/forge/example_mods/small_treasures/article.md: -------------------------------------------------------------------------------- 1 | # Small Treasures 2 | 3 | Эта модификация добавляет в мир сокровищницы с запертыми сундуками. Есть три типа запертых сундуков: железный, золотой и 4 | алмазный. Они открываются соответствующими ключами, которые можно найти в других сокровищницах Minecraft или же прямо в 5 | этих закрытых сундуках. 6 | 7 | При попытке уничтожить сундук он взрывается достаточно сильно, чтобы убить игрока. 8 | 9 | ## Использованные технологии 10 | 11 | * Предметы 12 | * Генератор структур в мире 13 | * Блоки с GUI 14 | * Звуки 15 | * Чат 16 | 17 | ## Начало работы 18 | -------------------------------------------------------------------------------- /site/book/scripts/proper-anchor.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Proper anchor linking 3 | */ 4 | 5 | const TOP_MARGIN = 20; 6 | 7 | function adjustAnchor() { 8 | const $anchor = $(':target'); 9 | const fixedElementHeight = $('header').outerHeight(); 10 | if ($anchor.length > 0) 11 | window.scrollTo(0, $anchor.offset().top - fixedElementHeight - TOP_MARGIN); 12 | } 13 | $(window).on('hashchange load', adjustAnchor); 14 | 15 | $(() => { 16 | $('body').on('click', "a[href^='#']", function (ev) { 17 | if (window.location.hash === $(this).attr('href')) { 18 | ev.preventDefault(); 19 | adjustAnchor(); 20 | } 21 | }); 22 | }); -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | set -o errexit -o nounset 4 | 5 | if [ "$TRAVIS_BRANCH" != "master" ] 6 | then 7 | echo "This commit was made against the $TRAVIS_BRANCH and not the master! No deploy!" 8 | exit 0 9 | fi 10 | 11 | rev=$(git rev-parse --short HEAD) 12 | 13 | git init 14 | git config user.name "CMTV" 15 | git config user.email "newpetya@inbox.ru" 16 | 17 | git remote add upstream "https://$GH_TOKEN@github.com/mc-modding/mc-modding-book.git" 18 | git fetch upstream 19 | git reset upstream/gh-pages 20 | 21 | echo "mcmodding.ru" > CNAME 22 | 23 | touch . 24 | 25 | git add -A . 26 | git commit -m "Automatic book generation based on ${rev}" 27 | git push -q upstream HEAD:gh-pages -------------------------------------------------------------------------------- /site/book/scripts/classes/Utils.js: -------------------------------------------------------------------------------- 1 | /** Useful functions */ 2 | class Utils { 3 | /** 4 | * Находится ли заданное число между границами. Порядок границ не имеет значения 5 | * 6 | * @param value Число для проверки 7 | * @param range_a Граница 1 8 | * @param range_b Граница 2 9 | * 10 | * @returns {boolean} 11 | */ 12 | static between(value, range_a, range_b) { 13 | let min, max; 14 | 15 | if(range_a > range_b) { 16 | min = range_b; 17 | max = range_a; 18 | } else { 19 | min = range_a; 20 | max = range_b; 21 | } 22 | 23 | return value >= min && value <= max; 24 | } 25 | } -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - stable 4 | install: 5 | - npm install js-yaml 6 | - npm install mustache 7 | - npm install mkdirp 8 | - npm install rimraf 9 | - npm install showdown 10 | - npm install gulp 11 | - npm install gulp-autoprefixer gulp-clean-css gulp-concat gulp-imagemin gulp-plumber gulp-sass gulp-uglify gulp-babel babel-preset-es2015 gulp-cache 12 | script: node site/must-have/_tools/processes/build-must-have && gulp move-must-have && node site/index/_tools/processes/build-index && gulp build-index && node site/book/_tools/processes/build-books && gulp build-books 13 | after_success: 14 | - test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash deploy.sh -------------------------------------------------------------------------------- /site/must-have/libs/highlight/styles/ascetic.css: -------------------------------------------------------------------------------- 1 | /* 2 | 3 | Original style from softwaremaniacs.org (c) Ivan Sagalaev