We're going to be on 0.5 for a while.
This commit is contained in:
Tony Bark 2025-04-28 19:06:22 -04:00
parent 3690f96e42
commit 970303d5ec
4 changed files with 15 additions and 14 deletions

View file

@ -3,6 +3,7 @@
<PropertyGroup> <PropertyGroup>
<OutputType>Exe</OutputType> <OutputType>Exe</OutputType>
<Version>0.5.103</Version> <Version>0.5.103</Version>
<VersionSuffix>lts</VersionSuffix>
<TargetFramework>net8.0</TargetFramework> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>

View file

@ -2,11 +2,11 @@ namespace PersonaForge;
public class PersonalityTraits public class PersonalityTraits
{ {
public int Outgoing { get; set; }
public int Nice { get; set; }
public int Playful { get; set; }
public int Neat { get; set; } public int Neat { get; set; }
public int Outgoing { get; set; }
public int Active { get; set; } public int Active { get; set; }
public int Playful { get; set; }
public int Nice { get; set; }
public static PersonalityTraits Create() => new(); public static PersonalityTraits Create() => new();

View file

@ -15,12 +15,12 @@ Because The Sims 2 doesnt have traits in the same way later installments do,
## 🛣️ Project Roadmap ## 🛣️ Project Roadmap
| Phase | Goal | Status | | Phase | Goal | Status |
| ----- | ------------------------------------------- | ------ | | -------- | ------------------------------------------- | ------ |
| v0.1 | Core random point generator | ✅ | | v0.1 | Core random point generator | ✅ |
| v0.2 | PersonalityProfile class | ✅ | | v0.2 | PersonalityProfile class | ✅ |
| v0.3 | Interactive JSON export | ✅ | | v0.3 | Interactive JSON export | ✅ |
| v0.4 | Archetypes with weighted biases | ✅ | | v0.4 | Archetypes with weighted biases | ✅ |
| v0.5 | Command line tool | ✅ | | v0.5 LTS | Command line tool | ✅ |
| v1.0 | Stable "Release" version with documentation | 🔜 | | v1.0 | Stable "Release" version with documentation | 🔜 |
| v1.x | Profile import/load from JSON | 🔜 | | v1.x | Profile import/load from JSON | 🔜 |

View file

@ -14,8 +14,8 @@
"TraitBiases": { "TraitBiases": {
"Outgoing": 0.9, "Outgoing": 0.9,
"Playful": 0.8, "Playful": 0.8,
"Active": 0.7, "Active": 0.5,
"Nice": 0.5, "Nice": 0.7,
"Neat": 0.3 "Neat": 0.3
} }
}, },