Skip to content

Commit

Permalink
1.0.65.1554
Browse files Browse the repository at this point in the history
  • Loading branch information
SphereII committed Aug 29, 2024
1 parent 38904f0 commit bf5f2bc
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 10 deletions.
2 changes: 1 addition & 1 deletion Mods/0-SCore/ModInfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
<Description value="SCore Mod" />
<DisplayName value="0-SCore" />
<Website value="" />
<Version value="1.0.64.2041" />
<Version value="1.0.65.1554" />
</xml>
4 changes: 2 additions & 2 deletions Mods/0-SCore/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
// [assembly: AssemblyVersion("1.0.*")]
//[assembly: AssemblyVersion("20.0.*")]

[assembly: AssemblyVersion("1.0.64.2041")]
[assembly: AssemblyFileVersion("1.0.64.2041")]
[assembly: AssemblyVersion("1.0.65.1554")]
[assembly: AssemblyFileVersion("1.0.65.1554")]
9 changes: 9 additions & 0 deletions Mods/0-SCore/ReadMe.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,15 @@ Direct Download to the 0-SCore.zip available on gitlab mirror:
### Change Logs

[ Change Log ]
Version: 1.0.65.1554

[ No Changes to SCore, only Better Life ]

[ SphereII A Better Life ]
- 1.0.19.1554
- Fixed an issue where errors would occur without NPC Core installed, due to factions.


Version: 1.0.64.2041
[ SCore Options ]
- Added toggle for WeaponSway
Expand Down
Binary file modified Mods/0-SCore/SCore.dll
Binary file not shown.
Binary file modified Mods/0-SCore/SCore.pdb
Binary file not shown.
36 changes: 32 additions & 4 deletions Mods/SphereII A Better Life/Config/entityclasses.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,14 @@

<entity_class name="AggressiveFish" extends="PassiveFish">
<property name="IsEnemyEntity" value="true"/> <!-- Set this if you want this entity to be spawned when user chooses 'enemy entities off' -->
<property name="Faction" value="aggressiveanimalssmall"/>
<conditional>
<if cond="mod_loaded('0-XNPCCore')">
<property name="Faction" value="aggressiveanimalssmall"/>
</if>
<else>
<property name="Faction" value="animals"/>
</else>
</conditional>
<property name="Tags" value="entity,animal,notrample"/>
<property name="AIGroupCircle" value="0"/>
<property name="AITask-1" value="ApproachAndAttackTarget" data="class=EntityPlayer,100"/>
Expand Down Expand Up @@ -149,7 +156,14 @@
<drop event="Harvest" name="foodRawMeat" count="0" tool_category="Butcher"/>
<drop event="Harvest" name="foodRawMeat" tag="butcherHarvest" count="1"/>
<property name="Tags" value="entity,animal,notrample"/>
<property name="Faction" value="aggressiveanimalssmall"/>
<conditional>
<if cond="mod_loaded('0-XNPCCore')">
<property name="Faction" value="aggressiveanimalssmall"/>
</if>
<else>
<property name="Faction" value="animals"/>
</else>
</conditional>
</entity_class>
<entity_class name="fishPerch" extends="PassiveFish" >
<property name="Class" value="EntitySwimingSDX, SCore" />
Expand All @@ -166,7 +180,14 @@
<drop event="Harvest" name="foodRawMeat" count="0" tool_category="Butcher"/>
<drop event="Harvest" name="foodRawMeat" tag="butcherHarvest" count="1"/>
<property name="Tags" value="entity,animal,notrample"/>
<property name="Faction" value="aggressiveanimalssmall"/>
<conditional>
<if cond="mod_loaded('0-XNPCCore')">
<property name="Faction" value="aggressiveanimalssmall"/>
</if>
<else>
<property name="Faction" value="animals"/>
</else>
</conditional>
</entity_class>
<entity_class name="fishBabyShark" extends="AggressiveFish" >
<property name="Class" value="EntitySwimingSDX, SCore" />
Expand All @@ -175,7 +196,14 @@
<drop event="Harvest" name="foodRawMeat" count="0" tool_category="Butcher"/>
<drop event="Harvest" name="foodRawMeat" tag="butcherHarvest" count="1"/>
<property name="Tags" value="entity,animal,notrample"/>
<property name="Faction" value="aggressiveanimalssmall"/>
<conditional>
<if cond="mod_loaded('0-XNPCCore')">
<property name="Faction" value="aggressiveanimalssmall"/>
</if>
<else>
<property name="Faction" value="animals"/>
</else>
</conditional>
</entity_class>


Expand Down
2 changes: 1 addition & 1 deletion Mods/SphereII A Better Life/ModInfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
<Description value="SphereII A Better Life, adding fish and birds to the game."/>
<DisplayName value="A Better Life"/>
<Website value=""/>
<Version value="1.0.0.732"/>
<Version value="1.0.19.1554"/>
</xml>
4 changes: 2 additions & 2 deletions Mods/SphereII A Better Life/Properties/versionTemplate.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@

using System.Reflection;

[assembly: AssemblyVersion("1.0.0.732")]
[assembly: AssemblyFileVersion("1.0.0.732")]
[assembly: AssemblyVersion("1.0.19.1554")]
[assembly: AssemblyFileVersion("1.0.19.1554")]

0 comments on commit bf5f2bc

Please sign in to comment.