|
| 1 | +# DeathDrop |
| 2 | + |
| 3 | +- author: 大豆子,肝帝熙恩更新优化 |
| 4 | +- source: TShock Chinese official group |
| 5 | +- Allows customization of what monsters drop when they die. |
| 6 | +- Random or customized, does not affect each other |
| 7 | + |
| 8 | +## Instruction |
| 9 | + |
| 10 | +``` |
| 11 | +none |
| 12 | +``` |
| 13 | + |
| 14 | +## Configuration |
| 15 | +> Configuration file location: tshock/死亡掉落配置表.json |
| 16 | +```json5 |
| 17 | +{ |
| 18 | + "是否开启随机掉落": false, //Whether to turn on random drops //The main switch for random drops. This must be set to true to set content other than customization. |
| 19 | + "完全随机掉落": false, //Completely random drop //Completely random drop, select one or more items from 1-5452 |
| 20 | + "完全随机掉落排除物品ID": [], //Completely random drop excluded item ID //The items here will not be selected |
| 21 | + "普通随机掉落物": [], //Ordinary random drops //If the completely random drops are false, you can customize the random drops of all monsters here, and the random drops are selected from here |
| 22 | + "随机掉落概率": 100, //Random drop probability //Probability, affecting both completely random drops and ordinary random drops |
| 23 | + "随机掉落数量最小值": 1, //Minimum number of random drops //Minimum number of random drops, affecting both completely random drops and ordinary random drops |
| 24 | + "随机掉落数量最大值": 1, //Maximum number of random drops //Minimum number of random drops, affecting both completely random drops and ordinary random drops |
| 25 | + "是否开启自定义掉落": false, //Whether to enable custom drops, //Custom drops are not affected by all the above settings and work independently. |
| 26 | + "自定义掉落设置": [ //Custom drop settings |
| 27 | + { |
| 28 | + "生物id": 0, //bioid |
| 29 | + "完全随机掉落": false, //Completely random drops |
| 30 | + "完全随机掉落排除物品ID": [], //Completely random drop excluded item ID |
| 31 | + "普通随机掉落物": [], //Common random drops |
| 32 | + "随机掉落数量最小值": 1, //Minimum random drop quantity |
| 33 | + "随机掉落数量最大值": 1, //Maximum number of random drops |
| 34 | + "掉落概率": 100 //Drop probability |
| 35 | + } |
| 36 | + ] |
| 37 | +} |
| 38 | +``` |
| 39 | + |
| 40 | +## Feedback |
| 41 | +- Github Issue -> TShockPlugin Repo: https://github.com/UnrealMultiple/TShockPlugin |
| 42 | +- TShock QQ Group: 816771079 |
| 43 | +- China Terraria Forum: trhub.cn, bbstr.net, tr.monika.love |
0 commit comments