Skip to content

Commit

Permalink
更改部分参数
Browse files Browse the repository at this point in the history
  • Loading branch information
warmthdawn committed Jan 1, 2021
1 parent fc4fb18 commit 7f3540e
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 24 deletions.
13 changes: 6 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@
[发布地址](https://github.com/ParaParty/gugu-utils/releases)

### Botania附属部分
1. 勿落草产魔2倍
2. 火红莲工作范围超过5朵效率下降
3. 热爆花产魔2倍,阻止刷TNT
4. 斑斓花产魔3倍
5. 阿卡纳工作范围超过4朵效率下降
6. 启命英产魔8倍
7. 噬草花产魔4倍
1. 火红莲工作范围超过5朵效率下降
2. 热爆花产魔1.5倍,阻止刷TNT
3. 斑斓花产魔2倍
4. 阿卡纳工作范围超过4朵效率下降
5. 启命英产魔8倍
6. 噬草花产魔3倍
Original file line number Diff line number Diff line change
Expand Up @@ -22,19 +22,17 @@ public SubtileRegisterOverride() {


public void reRegisterSubtile() {
//重新注册勿落草(产魔2倍)
registerSubTileForce(LibBlockNames.SUBTILE_SHULK_ME_NOT, SubTileShulkMeNotModified.class);
//重新注册火红莲(禁止堆)
registerSubTileForce(LibBlockNames.SUBTILE_ENDOFLAME, SubTileEndoflameModified.class);
//重新注册热爆花(产魔2倍,阻止刷TNT)
//重新注册热爆花(产魔1.5倍,阻止刷TNT)
registerSubTileForce(LibBlockNames.SUBTILE_ENTROPINNYUM, SubTileEntropinnyumModified.class);
//重新注册斑斓花(产魔3倍
//重新注册斑斓花(产魔2倍
registerSubTileForce(LibBlockNames.SUBTILE_SPECTROLUS, SubTileSpectrolusModified.class);
//重新注册阿卡纳(禁止堆)
registerSubTileForce(LibBlockNames.SUBTILE_ARCANE_ROSE, SubTileArcaneRoseModified.class);
//重新注册启命英(产魔8倍)
registerSubTileForce(LibBlockNames.SUBTILE_DANDELIFEON, SubTileDandelifeonModified.class);
//重新注册噬草花(产魔4倍
//重新注册噬草花(产魔3倍
registerSubTileForce(LibBlockNames.SUBTILE_RAFFLOWSIA, SubTileRafflowsiaModified.class);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public class SubTileRafflowsiaModified extends SubTileGenerating {
public void onUpdate() {
super.onUpdate();

int mana = 8400;
int mana = 6300;

if(getMaxMana() - this.mana >= mana && !supertile.getWorld().isRemote && ticksExisted % 40 == 0) {
for(int i = 0; i < RANGE * 2 + 1; i++)
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public void onUpdate() {
if (!stack.isEmpty() && stack.getItem() == wool && !item.isDead && item.getAge() >= slowdown) {
int meta = stack.getItemDamage();
if (meta == nextColor) {
mana = Math.min(getMaxMana(), mana + 7200);
mana = Math.min(getMaxMana(), mana + 4800);
nextColor = nextColor == 15 ? 0 : nextColor + 1;
sync();

Expand Down

0 comments on commit 7f3540e

Please sign in to comment.