mirror of
https://github.com/SquidDev-CC/CC-Tweaked
synced 2025-01-23 23:46:55 +00:00
Some tweaks to the turtle docs
- Mention only diamond tools can be used as upgrades, and be clearer that only the pickaxe and sword are actually useful. We probably could be more explicit here, but struggled to find a way to do that. - Expliitly list which peripherals can be equipped. - Add turtle recipes.
This commit is contained in:
parent
43770fa9bd
commit
9b2f974a81
@ -47,18 +47,24 @@ import java.util.Optional;
|
|||||||
* <p>
|
* <p>
|
||||||
* ## Turtle upgrades
|
* ## Turtle upgrades
|
||||||
* While a normal turtle can move about the world and place blocks, its functionality is limited. Thankfully, turtles
|
* While a normal turtle can move about the world and place blocks, its functionality is limited. Thankfully, turtles
|
||||||
* can be upgraded with *tools* and [peripherals][`peripheral`]. Turtles have two upgrade slots, one on the left and right
|
* can be upgraded with upgrades. Turtles have two upgrade slots, one on the left and right sides. Upgrades can be
|
||||||
* sides. Upgrades can be equipped by crafting a turtle with the upgrade, or calling the [`turtle.equipLeft`]/[`turtle.equipRight`]
|
* equipped by crafting a turtle with the upgrade, or calling the [`turtle.equipLeft`]/[`turtle.equipRight`] functions.
|
||||||
* functions.
|
|
||||||
* <p>
|
* <p>
|
||||||
* Turtle tools allow you to break blocks ([`turtle.dig`]) and attack entities ([`turtle.attack`]). Some tools are more
|
* By default, any diamond tool may be used as an upgrade (though more may be added with [datapacks]). The diamond
|
||||||
* suitable to a task than others. For instance, a diamond pickaxe can break every block, while a sword does more
|
* pickaxe may be used to break blocks (with [`turtle.dig`]), while the sword can attack entities ([`turtle.attack`]).
|
||||||
* damage. Other tools have more niche use-cases, for instance hoes can til dirt.
|
* Other tools have more niche use-cases, for instance hoes can til dirt.
|
||||||
* <p>
|
* <p>
|
||||||
* Peripherals (such as the [wireless modem][`modem`] or [`speaker`]) can also be equipped as upgrades. These are then
|
* Some peripherals (namely [speakers][`speaker`] and Ender and Wireless [modems][`modem`]) can also be equipped as
|
||||||
* accessible by accessing the `"left"` or `"right"` peripheral.
|
* upgrades. These are then accessible by accessing the `"left"` or `"right"` peripheral.
|
||||||
|
* <p>
|
||||||
|
* ## Recipes
|
||||||
|
* <div class="recipe-container">
|
||||||
|
* <mc-recipe recipe="computercraft:turtle_normal"></mc-recipe>
|
||||||
|
* <mc-recipe recipe="computercraft:turtle_advanced"></mc-recipe>
|
||||||
|
* </div>
|
||||||
* <p>
|
* <p>
|
||||||
* [Turtle Graphics]: https://en.wikipedia.org/wiki/Turtle_graphics "Turtle graphics"
|
* [Turtle Graphics]: https://en.wikipedia.org/wiki/Turtle_graphics "Turtle graphics"
|
||||||
|
* [datapacks]: https://datapacks.madefor.cc ""
|
||||||
*
|
*
|
||||||
* @cc.module turtle
|
* @cc.module turtle
|
||||||
* @cc.since 1.3
|
* @cc.since 1.3
|
||||||
|
Loading…
Reference in New Issue
Block a user