Skip to content

Commit 4cad538

Browse files
committed
more update to 1.6
1 parent cdfaf53 commit 4cad538

File tree

14 files changed

+1215
-243
lines changed

14 files changed

+1215
-243
lines changed

assets/DOPFoundationLogo.png

12.3 KB
Loading

assets/DPSoftware2.png

13.8 KB
Loading

blocks/Advanced_Peripherals/block_design.json

Lines changed: 298 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@
218218
"tooltip": "Send message formatted to player chat"
219219
},
220220
"advanced_peripherals_chatbox_send_toast_formatted_to_player": {
221-
"message0": "Chatbox %1 toast send %2 and title %3 to player %4\nPrefix %5 Brackets %6 Bracket color %7 Range %8",
221+
"message0": "Chatbox %1 toast send formatted json %2 and title %3 to player %4\nPrefix %5 Brackets %6 Bracket color %7 Range %8",
222222
"args0": [
223223
{
224224
"type": "input_value",
@@ -227,7 +227,7 @@
227227
},
228228
{
229229
"type": "input_value",
230-
"name": "TEXT",
230+
"name": "JSON",
231231
"check": "String"
232232
},
233233
{
@@ -1508,5 +1508,301 @@
15081508
"nextStatement": null,
15091509
"colour": 200,
15101510
"tooltip": "Sets the redstone level output on the given side to the given power level. (0-15)"
1511+
},
1512+
1513+
"advanced_peripherals_mc_beacon_get_level": {
1514+
"message0": "Get level from beacon %1",
1515+
"args0": [
1516+
{
1517+
"type": "input_value",
1518+
"name": "BEACON",
1519+
"check": "Peripheral"
1520+
}
1521+
],
1522+
"output": "Number",
1523+
"colour": 200,
1524+
"tooltip": "Returns the level of the Beacon."
1525+
},
1526+
"advanced_peripherals_mc_beacon_get_primary_effect": {
1527+
"message0": "Get primary effect from beacon %1",
1528+
"args0": [
1529+
{
1530+
"type": "input_value",
1531+
"name": "BEACON",
1532+
"check": "Peripheral"
1533+
}
1534+
],
1535+
"output": "String",
1536+
"colour": 200,
1537+
"tooltip": "Returns the registry name of the beacon's primary effect."
1538+
},
1539+
"advanced_peripherals_mc_beacon_get_secondary_effect": {
1540+
"message0": "Get secondary secondary effect from beacon %1",
1541+
"args0": [
1542+
{
1543+
"type": "input_value",
1544+
"name": "BEACON",
1545+
"check": "Peripheral"
1546+
}
1547+
],
1548+
"output": "String",
1549+
"colour": 200,
1550+
"tooltip": "Returns the registry name of the beacon's secondary effect."
1551+
},
1552+
1553+
"advanced_peripherals_mc_note_block_play_note": {
1554+
"message0": "Play current note sound at note block %1",
1555+
"args0": [
1556+
{
1557+
"type": "input_value",
1558+
"name": "NOTEBLOCK",
1559+
"check": "Peripheral"
1560+
}
1561+
],
1562+
"previousStatement": null,
1563+
"nextStatement": null,
1564+
"colour": 200,
1565+
"tooltip": "Plays the Note Block's current note sound."
1566+
},
1567+
"advanced_peripherals_mc_note_block_get_note": {
1568+
"message0": "Get current note from note block %1",
1569+
"args0": [
1570+
{
1571+
"type": "input_value",
1572+
"name": "NOTEBLOCK",
1573+
"check": "Peripheral"
1574+
}
1575+
],
1576+
"output": "Number",
1577+
"colour": 200,
1578+
"tooltip": "Returns the index for the Note Block's current note. A number from 0 to 24."
1579+
},
1580+
"advanced_peripherals_mc_note_block_change_note_by": {
1581+
"message0": "Change note to %1 at note block %2",
1582+
"args0": [
1583+
{
1584+
"type": "input_value",
1585+
"name": "TO",
1586+
"check": "Number"
1587+
},
1588+
{
1589+
"type": "input_value",
1590+
"name": "NOTEBLOCK",
1591+
"check": "Peripheral"
1592+
}
1593+
],
1594+
"previousStatement": null,
1595+
"nextStatement": null,
1596+
"colour": 200,
1597+
"tooltip": "Changes the Note Block's note to the given note. note must be a number from 0 to 24."
1598+
},
1599+
"advanced_peripherals_mc_note_block_change_note": {
1600+
"message0": "Change note by 1 at note block %1",
1601+
"args0": [
1602+
{
1603+
"type": "input_value",
1604+
"name": "NOTEBLOCK",
1605+
"check": "Peripheral"
1606+
}
1607+
],
1608+
"previousStatement": null,
1609+
"nextStatement": null,
1610+
"colour": 200,
1611+
"tooltip": "Increments the Note Block's note to the next available note."
1612+
},
1613+
1614+
"advanced_peripherals_botania_flowers_get_mana": {
1615+
"message0": "Get mana from flower %1",
1616+
"args0": [
1617+
{
1618+
"type": "input_value",
1619+
"name": "FLOWER",
1620+
"check": "Peripheral"
1621+
}
1622+
],
1623+
"output": "Number",
1624+
"colour": 200,
1625+
"tooltip": "Returns the amount of mana stored in the flower."
1626+
},
1627+
"advanced_peripherals_botania_flowers_get_max_mana": {
1628+
"message0": "Get max mana from flower %1",
1629+
"args0": [
1630+
{
1631+
"type": "input_value",
1632+
"name": "FLOWER",
1633+
"check": "Peripheral"
1634+
}
1635+
],
1636+
"output": "Number",
1637+
"colour": 200,
1638+
"tooltip": "Returns the maximum amount of mana that the flower can hold."
1639+
},
1640+
"advanced_peripherals_botania_flowers_is_floating": {
1641+
"message0": "Is flower %1 floating",
1642+
"args0": [
1643+
{
1644+
"type": "input_value",
1645+
"name": "FLOWER",
1646+
"check": "Peripheral"
1647+
}
1648+
],
1649+
"output": "Boolean",
1650+
"colour": 200,
1651+
"tooltip": "Returns true if the flower is a floating flower.",
1652+
"inputsInline": true
1653+
},
1654+
"advanced_peripherals_botania_flowers_is_on_enchanted_soil": {
1655+
"message0": "Is flower %1 on enchanted soil",
1656+
"args0": [
1657+
{
1658+
"type": "input_value",
1659+
"name": "FLOWER",
1660+
"check": "Peripheral"
1661+
}
1662+
],
1663+
"output": "Boolean",
1664+
"colour": 200,
1665+
"tooltip": "Returns true if the flower is placed on enchanted soil.",
1666+
"inputsInline": true
1667+
},
1668+
"advanced_peripherals_botania_flowers_is_empty": {
1669+
"message0": "Is flower %1 empty",
1670+
"args0": [
1671+
{
1672+
"type": "input_value",
1673+
"name": "FLOWER",
1674+
"check": "Peripheral"
1675+
}
1676+
],
1677+
"output": "Boolean",
1678+
"colour": 200,
1679+
"tooltip": "Returns true if the Flower is empty.",
1680+
"inputsInline": true
1681+
},
1682+
"advanced_peripherals_botania_flowers_is_full": {
1683+
"message0": "Is flower %1 full",
1684+
"args0": [
1685+
{
1686+
"type": "input_value",
1687+
"name": "FLOWER",
1688+
"check": "Peripheral"
1689+
}
1690+
],
1691+
"output": "Boolean",
1692+
"colour": 200,
1693+
"tooltip": "Returns true if the Flower is full.",
1694+
"inputsInline": true
1695+
},
1696+
1697+
"advanced_peripherals_botania_mana_pool_get_mana": {
1698+
"message0": "Get mana from pool %1",
1699+
"args0": [
1700+
{
1701+
"type": "input_value",
1702+
"name": "POOL",
1703+
"check": "Peripheral"
1704+
}
1705+
],
1706+
"output": "Number",
1707+
"colour": 200,
1708+
"tooltip": "Returns the amount of mana stored in the pool."
1709+
},
1710+
"advanced_peripherals_botania_mana_pool_get_max_mana": {
1711+
"message0": "Get max mana from pool %1",
1712+
"args0": [
1713+
{
1714+
"type": "input_value",
1715+
"name": "POOL",
1716+
"check": "Peripheral"
1717+
}
1718+
],
1719+
"output": "Number",
1720+
"colour": 200,
1721+
"tooltip": "Returns the maximum amount of mana that the pool can hold."
1722+
},
1723+
"advanced_peripherals_botania_mana_pool_get_mana_needed": {
1724+
"message0": "Get amount of mana is pool %1 needed to fill full",
1725+
"args0": [
1726+
{
1727+
"type": "input_value",
1728+
"name": "POOL",
1729+
"check": "Peripheral"
1730+
}
1731+
],
1732+
"output": "Number",
1733+
"colour": 200,
1734+
"tooltip": "Returns the amount of mana needed to fill the pool. Equivalent to getMaxMana() - getMana().",
1735+
"inputsInline": true
1736+
},
1737+
"advanced_peripherals_botania_mana_pool_is_empty": {
1738+
"message0": "Is pool %1 empty",
1739+
"args0": [
1740+
{
1741+
"type": "input_value",
1742+
"name": "POOL",
1743+
"check": "Peripheral"
1744+
}
1745+
],
1746+
"output": "Boolean",
1747+
"colour": 200,
1748+
"tooltip": "Returns true if the Mana Pool is empty.",
1749+
"inputsInline": true
1750+
},
1751+
"advanced_peripherals_botania_mana_pool_is_full": {
1752+
"message0": "Is pool %1 full",
1753+
"args0": [
1754+
{
1755+
"type": "input_value",
1756+
"name": "POOL",
1757+
"check": "Peripheral"
1758+
}
1759+
],
1760+
"output": "Boolean",
1761+
"colour": 200,
1762+
"tooltip": "Returns true if the Mana Pool is full.",
1763+
"inputsInline": true
1764+
},
1765+
"advanced_peripherals_botania_mana_pool_can_charge_item": {
1766+
"message0": "Can pool %1 change item",
1767+
"args0": [
1768+
{
1769+
"type": "input_value",
1770+
"name": "POOL",
1771+
"check": "Peripheral"
1772+
}
1773+
],
1774+
"output": "Boolean",
1775+
"colour": 200,
1776+
"tooltip": "Returns true if mode of the Mana Pool is set to charge the items on it.",
1777+
"inputsInline": true
1778+
},
1779+
"advanced_peripherals_botania_mana_pool_has_items": {
1780+
"message0": "Is pool %1 has item",
1781+
"args0": [
1782+
{
1783+
"type": "input_value",
1784+
"name": "POOL",
1785+
"check": "Peripheral"
1786+
}
1787+
],
1788+
"output": "Boolean",
1789+
"colour": 200,
1790+
"tooltip": "Returns true if the Mana Pool has at least one item on it.",
1791+
"inputsInline": true
1792+
},
1793+
"advanced_peripherals_botania_mana_pool_get_items": {
1794+
"message0": "get items from pool %1 ",
1795+
"args0": [
1796+
{
1797+
"type": "input_value",
1798+
"name": "POOL",
1799+
"check": "Peripheral"
1800+
}
1801+
],
1802+
"output": "Array",
1803+
"colour": 200,
1804+
"tooltip": "Returns a table with the items lying on the Mana Pool."
15111805
}
1806+
1807+
15121808
}

0 commit comments

Comments
 (0)