Skip to content

Commit

Permalink
Update 3.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
Awbugl committed Nov 8, 2024
1 parent 014dc73 commit 9078ce4
Show file tree
Hide file tree
Showing 6 changed files with 37 additions and 27 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- v3.0.5
+ 移除了物品`齿轮`,调整了相关配方
- v3.0.6
+ 移除了黑雾掉落中的`齿轮`
+ 调整了部分科技的研究需求、前置科技

+ Removed item `Gears` and adjusted related recipes
Expand All @@ -10,6 +10,14 @@
<summary>点击展开日志 | Click to view all </summary>


- v3.0.5
+ 移除了物品`齿轮`,调整了相关配方
+ 调整了部分科技的研究需求、前置科技

+ Removed item `Gears` and adjusted related recipes
+ Adjusted research requirements and pre-requisite technologies for some technologies.


- v3.0.4
+ 调整了配方`齿轮``电磁矩阵``基础机械组件``煤炭干馏`的需求;`合成氨``硫酸`的速度
+ 调整了矿物生成时的分布
Expand Down
4 changes: 2 additions & 2 deletions data/items_mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -185,8 +185,8 @@
"DropRate": 0.0,
"EnemyDropLevel": 1,
"EnemyDropRange": [
0.959,
0.005
0.1,
0.007
],
"EnemyDropCount": 1.4,
"EnemyDropMask": 2147483647,
Expand Down
10 changes: 5 additions & 5 deletions data/items_vanilla.json
Original file line number Diff line number Diff line change
Expand Up @@ -2566,13 +2566,13 @@
"BombType": 0,
"CraftType": 0,
"DropRate": 0,
"EnemyDropLevel": 1,
"EnemyDropLevel": 0,
"EnemyDropRange": [
0.1,
0.007
0.0,
0.0
],
"EnemyDropCount": 1.7,
"EnemyDropMask": 2147483647,
"EnemyDropCount": 0,
"EnemyDropMask": 0,
"EnemyDropMaskRatio": 0
},
{
Expand Down
30 changes: 16 additions & 14 deletions data/techs.json
Original file line number Diff line number Diff line change
Expand Up @@ -487,9 +487,7 @@
"PreTechs": [
1900
],
"PreTechsImplicit": [
1002
],
"PreTechsImplicit": [],
"Items": [
6203
],
Expand Down Expand Up @@ -535,7 +533,9 @@
"PreTechs": [
1120
],
"PreTechsImplicit": [],
"PreTechsImplicit": [
1932
],
"Items": [
6001
],
Expand Down Expand Up @@ -579,9 +579,11 @@
],
"PreTechsImplicit": [],
"Items": [
6278
6001,
6002
],
"ItemPoints": [
20,
20
],
"HashNeeded": 72000,
Expand Down Expand Up @@ -1475,9 +1477,11 @@
1122
],
"Items": [
6278
6001,
6002
],
"ItemPoints": [
20,
20
],
"HashNeeded": 144000,
Expand Down Expand Up @@ -2622,11 +2626,9 @@
],
"PreTechsImplicit": [],
"Items": [
6001,
6002
6278
],
"ItemPoints": [
5,
5
],
"HashNeeded": 288000,
Expand Down Expand Up @@ -4297,7 +4299,8 @@
1801
],
"PreTechsImplicit": [
1101
1101,
1805
],
"Items": [
6001
Expand Down Expand Up @@ -4348,11 +4351,9 @@
1502
],
"Items": [
6001,
6002
6278
],
"ItemPoints": [
10,
10
],
"HashNeeded": 144000,
Expand Down Expand Up @@ -5545,7 +5546,8 @@
1941
],
"PreTechsImplicit": [
1120
1120,
1002
],
"Items": [
6001
Expand Down
6 changes: 3 additions & 3 deletions src/Patches/Logic/ModelLoadingPatches.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ public static class ModelLoadingPatches
{
private static readonly Func<short, short> ModelIdMigrationAction = modelIndex =>
{
// if (modelIndex > 500 && modelIndex < 520) modelIndex += 300;
// v3.0 don't need merge old modelIds
if (modelIndex > 500 && modelIndex < 520) modelIndex += 300;

return modelIndex;
};

Expand Down Expand Up @@ -82,7 +82,7 @@ public static IEnumerable<CodeInstruction> SkillSystem_Constructor_Transpiler(IE

return matcher.InstructionEnumeration();
}

[HarmonyPatch(typeof(ModelProto), nameof(ModelProto.InitMaxModelIndex))]
[HarmonyPostfix]
public static void InitMaxModelIndex()
Expand Down
2 changes: 1 addition & 1 deletion src/ProjectGenesis.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public class ProjectGenesis : BaseUnityPlugin, IModCanSave, IMultiplayerMod
{
public const string MODGUID = "org.LoShin.GenesisBook";
public const string MODNAME = "GenesisBook";
public const string VERSION = "3.0.5";
public const string VERSION = "3.0.6";
public const string DEBUGVERSION = "";

public static bool LoadCompleted;
Expand Down

0 comments on commit 9078ce4

Please sign in to comment.