Resource icon

LL3 FunFishing - 趣味钓鱼 | 自定义钓鱼 v0.2.0-rc.2

Source of resources
Original
Copyright link
https://github.com/engsr6982/FunFishing

FunFishing - 趣味钓鱼​

此插件可以为钓鱼添加自定义物品、生物。

比如:玩家钓上来个 苦力怕

下载/安装​

  • Lip
Code:
lip install github.com/engsr6982/FunFishing

  • 手动
下载 FunFishing-windows-x64.zip 解压后把 FunFishing 文件夹放入 plugins 文件夹下

配置文件​


JavaScript:
{
  "version": 1,
  "lists": [
    {
      "type": "None", // 生成类别 None 为兼容原版物品而保留、Mob 生成实体、Item 生成物品
      "probability": 0.20000000298023224, // 生成概率 0.01 ~ 1.0 (大于1.0还钓什么鱼,直接送吧)
      "data": "", // 数据,填写对应物品、生物命名空间或SNBT(SNBT仅限Item有效)
      "isSNBT": false // 数据是否为SNBT(仅Item有效)
    },
    {
      "type": "Mob", // 生成实体
      "probability": 0.15000000596046448, // 0.15的概率(此处由于精度问题,导致默认配置文件浮点数不准)
      "data": "minecraft:creeper", // 苦力怕
      "isSNBT": false
    },
    {
      "type": "Item",
      "probability": 0.05,
      "data": "minecraft:clock",
      "isSNBT": false
    }
  ]
}
  • Super Love
Reactions: ShrBox
Author
engsr6982
Price
5金粒
Downloads
30
Views
841
First release
Last update
Rating
0.00 star(s) 0 ratings

More resources from engsr6982

Share this resource

Latest updates

  1. v0.2.0-rc.2

    Changed 适配 LeviLamina v1.0.0-rc.2
  2. v0.1.1

    ### Fixed - 修复部分实体无法生成(感谢 @zimuya4153 提供的解决方案) - 修复钓鱼竿钓钓起其它生物导致的数据包异常(感谢 @zimuya4153 提供的解决方案)