Going the UI route
This commit is contained in:
parent
970303d5ec
commit
9d9f951e9d
36 changed files with 822 additions and 4 deletions
72
PersonaForge.Blazor/wwwroot/data/archetypes.json
Normal file
72
PersonaForge.Blazor/wwwroot/data/archetypes.json
Normal file
|
@ -0,0 +1,72 @@
|
|||
[
|
||||
{
|
||||
"Name": "Social Butterfly",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 0.9,
|
||||
"Playful": 0.8,
|
||||
"Active": 0.6,
|
||||
"Nice": 0.7,
|
||||
"Neat": 0.5
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Party Animal",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 0.9,
|
||||
"Playful": 0.8,
|
||||
"Active": 0.5,
|
||||
"Nice": 0.7,
|
||||
"Neat": 0.3
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Laidback",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 0.4,
|
||||
"Playful": 0.3,
|
||||
"Active": 0.4,
|
||||
"Nice": 0.8,
|
||||
"Neat": 0.4
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Grumpy",
|
||||
"TraitBiases": {
|
||||
"Nice": 0.2,
|
||||
"Playful": 0.4,
|
||||
"Outgoing": 0.6,
|
||||
"Neat": 0.7,
|
||||
"Active": 0.5
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Artistic",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 0.3,
|
||||
"Playful": 0.7,
|
||||
"Active": 0.5,
|
||||
"Nice": 0.9,
|
||||
"Neat": 0.6
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Ambitious",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 0.6,
|
||||
"Playful": 0.4,
|
||||
"Active": 0.8,
|
||||
"Nice": 0.5,
|
||||
"Neat": 0.7
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Adventurous",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 0.8,
|
||||
"Playful": 0.8,
|
||||
"Active": 0.9,
|
||||
"Nice": 0.6,
|
||||
"Neat": 0.4
|
||||
}
|
||||
}
|
||||
]
|
122
PersonaForge.Blazor/wwwroot/data/zodiacs.json
Normal file
122
PersonaForge.Blazor/wwwroot/data/zodiacs.json
Normal file
|
@ -0,0 +1,122 @@
|
|||
[
|
||||
{
|
||||
"Name": "Aries",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 8.0,
|
||||
"Playful": 3.0,
|
||||
"Active": 7.0,
|
||||
"Nice": 3.0,
|
||||
"Neat": 4.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Taurus",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 4.0,
|
||||
"Playful": 4.0,
|
||||
"Active": 4.0,
|
||||
"Nice": 7.0,
|
||||
"Neat": 6.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Gemini",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 7.0,
|
||||
"Playful": 7.0,
|
||||
"Active": 4.0,
|
||||
"Nice": 3.0,
|
||||
"Neat": 4.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Cancer",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 4.0,
|
||||
"Playful": 3.0,
|
||||
"Active": 4.0,
|
||||
"Nice": 8.0,
|
||||
"Neat": 6.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Leo",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 8.0,
|
||||
"Playful": 7.0,
|
||||
"Active": 4.0,
|
||||
"Nice": 2.0,
|
||||
"Neat": 4.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Virgo",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 2.0,
|
||||
"Playful": 2.0,
|
||||
"Active": 4.0,
|
||||
"Nice": 8.0,
|
||||
"Neat": 9.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Libra",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 8.0,
|
||||
"Playful": 6.0,
|
||||
"Active": 4.0,
|
||||
"Nice": 5.0,
|
||||
"Neat": 2.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Scorpio",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 5.0,
|
||||
"Playful": 2.0,
|
||||
"Active": 8.0,
|
||||
"Nice": 4.0,
|
||||
"Neat": 6.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Sagittarius",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 7.0,
|
||||
"Playful": 7.0,
|
||||
"Active": 7.0,
|
||||
"Nice": 2.0,
|
||||
"Neat": 2.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Capricorn",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 3.0,
|
||||
"Playful": 2.0,
|
||||
"Active": 6.0,
|
||||
"Nice": 7.0,
|
||||
"Neat": 7.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Aquarius",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 6.0,
|
||||
"Playful": 7.0,
|
||||
"Active": 4.0,
|
||||
"Nice": 5.0,
|
||||
"Neat": 3.0
|
||||
}
|
||||
},
|
||||
{
|
||||
"Name": "Pisces",
|
||||
"TraitBiases": {
|
||||
"Outgoing": 4.0,
|
||||
"Playful": 8.0,
|
||||
"Active": 4.0,
|
||||
"Nice": 5.0,
|
||||
"Neat": 4.0
|
||||
}
|
||||
}
|
||||
]
|
Loading…
Add table
Add a link
Reference in a new issue