Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 9 additions & 7 deletions docs/products/craftify/features.md
Original file line number Diff line number Diff line change
@@ -1,30 +1,32 @@
---
title: Features
description: TODO
description: Custom Gameplay Features
sidebar_label: Features
sidebar_position: 2
---

## Loot Tables
* End crystals are obtainable through End-City loot chests.
* It is possible for skeleton horses to drop end crystals as a rare drop.
* When a player is killed by another player, their head will be dropped as a loot item.
* When defeated, the Ender Dragon will drop an egg as an item.
* The Drowned mob has a higher chance of dropping copper and also drops Nautilus Shell.
* Warden can drop more sculk things
*need more specific information*

## Warp
The Wild warp system is a unique feature in many online games that allows players to be randomly teleported to a new location from their original spawn point.
This feature is particularly useful in games with large maps or those that require exploration, as it allows players to discover new areas without having to travel long distances on foot.

This feature is particularly useful in games with large maps or those that require exploration, as it allows players to discover new areas without having to travel long distances on foot. In addition to the Wild warp system, this offers targeted warps that allow players to choose from up to six pre-set locations.
In addition to the Wild warp system, this offers targeted warps that allow players to travel to pre-set locations. Targeted warps include 3 named points (Spawn, Shop, Community), 16 coloured warps (The minecraft colour set), and 12 numbered warps (1 to 12). All except the numbered warps are created and managed using a command book.

This feature is particularly useful for players who want to quickly travel to specific locations or for those who want to return to areas they have previously explored. Overall, these warp systems offer players greater flexibility and convenience when playing online games.

## Baby Animals
Naming any animal "Forever Young" will prevent it from growing into an adult.
Naming the baby animal "Forever Old" will reverse this effect.
When either name is successfully triggered, the animal will glow for a few seconds and the name will be removed.

## Other Functions
* If a nest or hive is broken, the number of bees inhabiting it is shown.
*insert screenshot of nest*
* When the dragon is defeated, an announcement is broadcasted to the server.
* When the dragon is defeated, an announcement is broadcasted to the server naming the player who killed the dragon.
*insert screenshot of announcement*
* New players are granted a welcome pack upon their initial login.
*insert screenshot of pack*
Expand Down
32 changes: 16 additions & 16 deletions docs/products/craftify/recipes.md
Original file line number Diff line number Diff line change
@@ -1,32 +1,31 @@
---
title: Crafting Recipes
description: TODO
description: Added or Modified Crafting Recipes
sidebar_label: Crafting Recipes
sidebar_position: 1
---

# Bulk Crafting
## Bulk Crafting

## Chests
### Chests
Crafting a chest with logs directly results in four chests, simplifying the process of creating numerous chests without the need to convert logs into planks first.

![](../../../src/img/products/craftify/crafting/bulk_chest.png)
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue

🧩 Analysis chain

Add missing alt text to images (MD045).
These images lack alt text.

Apply:

-![](../../../src/img/products/craftify/crafting/bulk_chest.png)
+![Bulk chest crafting recipe](../../../src/img/products/craftify/crafting/bulk_chest.png)
@@
-![](../../../src/img/products/craftify/crafting/bulk_chest_random.png)
+![Mixed logs chest crafting variants](../../../src/img/products/craftify/crafting/bulk_chest_random.png)
@@
-![](../../../src/img/products/craftify/crafting/bone_block.png)
+![Bone block crafting recipe](../../../src/img/products/craftify/crafting/bone_block.png)

Run to find missing/typo’d images and remaining no-alt-text:

Also applies to: 17-17, 23-23


🏁 Script executed:

#!/bin/bash
# List image refs lacking alt text
rg -nP '!\[\]\(' docs/products/craftify

# Verify referenced images exist
rg -nP '!\[.*\]\(([^)]+)\)' docs/products/craftify | \
  gawk -F'\\(|\\)' '{print $2}' | sort -u | \
  while read -r p; do
    if [ -f "$p" ]; then echo "OK   $p"; else echo "MISS $p"; fi
  done

Length of output: 3930


Add missing alt text (MD045) and restore missing images in docs/products/craftify/recipes.md

Replace every empty-image reference in docs/products/craftify/recipes.md (occurrences at lines 13, 17, 23, 28, 36, 41, 49, 54, 56, 58, 60, 65, 75, 80, 87, 92, 99, 104, 109, 114, 119, 128, 131) with descriptive alt text, e.g.:
Bulk chest crafting recipe

The following referenced image files are missing — add them to src/img/products/craftify/crafting/ or correct the paths:

  • ../../../src/img/products/craftify/crafting/bee_nest.png
  • ../../../src/img/products/craftify/crafting/blackstone.png
  • ../../../src/img/products/craftify/crafting/bone_block.png
  • ../../../src/img/products/craftify/crafting/bulk_chest.png
  • ../../../src/img/products/craftify/crafting/bulk_chest_random.png
  • ../../../src/img/products/craftify/crafting/chainmail_boots.png
  • ../../../src/img/products/craftify/crafting/chainmail_chestplate.png
  • ../../../src/img/products/craftify/crafting/chainmail_helmet.png
  • ../../../src/img/products/craftify/crafting/chainmail_leggings.png
  • ../../../src/img/products/craftify/crafting/dispenser.png
  • ../../../src/img/products/craftify/crafting/dragon_egg.png
  • ../../../src/img/products/craftify/crafting/elytra.png
  • ../../../src/img/products/craftify/crafting/experience_bottle.png
  • ../../../src/img/products/craftify/crafting/fermented_spider_eye.png
  • ../../../src/img/products/craftify/crafting/flesh_to_leather.png
  • ../../../src/img/products/craftify/crafting/gravel.png
  • ../../../src/img/products/craftify/crafting/guilded_blackstone.png
  • ../../../src/img/products/craftify/crafting/noch_apple.png
  • ../../../src/img/products/craftify/crafting/sponge.png
  • ../../../src/img/products/craftify/crafting/trident.png
  • ../../../src/img/products/craftify/crafting/unpack_blue_ice.png
  • ../../../src/img/products/craftify/crafting/unpack_packed_ice.png
  • ../../../src/img/products/craftify/crafting/wood_rebalance.png
🧰 Tools
🪛 markdownlint-cli2 (0.18.1)

13-13: Images should have alternate text (alt text)

(MD045, no-alt-text)

🤖 Prompt for AI Agents
In docs/products/craftify/recipes.md around lines 13 to 131, multiple image
references are empty (MD045) and many referenced image files are missing;
replace each empty image reference at the listed lines with a descriptive alt
text (e.g. "Bulk chest crafting recipe" for the bulk_chest.png line) and ensure
each image tag uses a clear descriptive alt string, and then restore the missing
image files by adding the listed PNGs to src/img/products/craftify/crafting/ (or
correct their paths if they live elsewhere): bee_nest.png, blackstone.png,
bone_block.png, bulk_chest.png, bulk_chest_random.png, chainmail_boots.png,
chainmail_chestplate.png, chainmail_helmet.png, chainmail_leggings.png,
dispenser.png, dragon_egg.png, elytra.png, experience_bottle.png,
fermented_spider_eye.png, flesh_to_leather.png, gravel.png,
guilded_blackstone.png, noch_apple.png, sponge.png, trident.png,
unpack_blue_ice.png, unpack_packed_ice.png, wood_rebalance.png; verify each
image path is correct and committed so the markdown renders and MD045 is
resolved.


## Logs
Stripped logs or any combination of log-types can be used interchangeably.

![](../../../src/img/products/craftify/crafting/bulk_chest_random.png)


## Bone Blocks
Bone blocks can be easily crafted by using bones as raw materials.
### Bone Blocks
Bone blocks can be directly crafted from bones.

![](../../../src/img/products/craftify/crafting/bone_block.png)

## Bundles
The ability to craft Bundles using the vanilla recipe has been enabled.
### Dispenser
Crafting a bow around a dropper provides a much easier way to bulk craft dispensers, while still retaining the original vanilla recipe.

![](../../../src/img/products/craftify/crafting/bundle.png)
![](../../../src/img/products/craftify/crafting/dispenser.png)

## Vanilla Crafting Rebalances
Vanilla crafting recipes have undergone minor changes:
Expand All @@ -41,6 +40,9 @@ Both red and brown mushrooms can be used to ferment spider eyes.

![](../../../src/img/products/craftify/crafting/fermented_spider_eye.png)

### Smithing Templates
All smithing template duplication costs have been reduced from 7 diamonds to 3.

## Bee Nests
To create "natural" bee nests, one can combine "artificial" beehives with honeycomb through crafting.

Expand All @@ -57,11 +59,6 @@ To craft all types of chainmail armor, chains are required as the main material.

![](../../../src/img/products/craftify/crafting/chainmail_boots.png)

## Dispenser
The combination of a dispenser and a dropper allows for convenient bulk crafting of bows, while still retaining the original vanilla recipe.

![](../../../src/img/products/craftify/crafting/dispenser.png)

## End Crystal
Two additional end crystals can be acquired from the Dragon Egg, which is now a guaranteed drop from the Ender Dragon and can also be found in End City chests, in addition to the vanilla recipe.

Expand All @@ -78,7 +75,7 @@ To craft this, prior visitation to The End dimension is a requirement.
![](../../../src/img/products/craftify/crafting/elytra.png)

## Bottle-o-Enchanting
To craft an Experience Bottle, you will need quartz, glowstone dust, and a water bottle.
To craft an Experience Bottle, you will need 1 quartz, 1 glowstone dust, 3 sculk, and a water bottle.

![](../../../src/img/products/craftify/crafting/experience_bottle.png)

Expand Down Expand Up @@ -117,10 +114,13 @@ By crafting 9 rotten flesh, players can obtain 1 rabbit hide, which can then be
![](../../../src/img/products/craftify/crafting/flesh_to_leather.png)

## Sponge Duplication
When sponge (wet or dry) is combined with coral blocks and live corals (of any color), 4 sponges can be crafted.
When sponge (wet or dry) is combined with coral blocks and corals, 4 sponges can be crafted. Coral or Coral Fans are interchangable, and any colour of Coral can be used, but all must be living.

![](../../../src/img/products/craftify/crafting/sponge.png)

## Unpackable Clay
The crafting recipe for clay from clay balls can be reversed, allowing them to be used for villager trading or smelting into bricks.

## Unpackable Ice
The crafting recipes for Blue ice and Packed ice can be reversed, providing a convenient way to store ice or water.

Expand Down
Loading