Organization and blessing data
This commit is contained in:
@@ -6,6 +6,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Build", "Build\Build.csproj
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Model", "Model\Model.csproj", "{12D2D5AE-D402-45D1-AE39-928964CADD56}"
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Shared", "Shared\Shared.csproj", "{CC6447F8-CB2B-4BD0-A38E-AA2E4048900E}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
@@ -24,5 +26,9 @@ Global
|
||||
{12D2D5AE-D402-45D1-AE39-928964CADD56}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{12D2D5AE-D402-45D1-AE39-928964CADD56}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{12D2D5AE-D402-45D1-AE39-928964CADD56}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
{CC6447F8-CB2B-4BD0-A38E-AA2E4048900E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{CC6447F8-CB2B-4BD0-A38E-AA2E4048900E}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{CC6447F8-CB2B-4BD0-A38E-AA2E4048900E}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{CC6447F8-CB2B-4BD0-A38E-AA2E4048900E}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
|
||||
+832
-752
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@ namespace Model;
|
||||
|
||||
public record SkillDoc : DocEntry
|
||||
{
|
||||
public required string Character { get; init; }
|
||||
public string? Character { get; init; }
|
||||
public string? Cast { get; init; }
|
||||
public string? Description { get; init; }
|
||||
public string? Key { get; init; }
|
||||
|
||||
@@ -198,10 +198,10 @@
|
||||
|
||||
private static string GetCharacterOrType(DocEntry doc) => doc switch
|
||||
{
|
||||
SkillDoc s => s.Character,
|
||||
DebuffDoc d => d.Character,
|
||||
BuffDoc b => b.Character,
|
||||
CharacterDoc c => c.Character,
|
||||
SkillDoc s => s.Character ?? "Other",
|
||||
DebuffDoc d => d.Character ?? "Other",
|
||||
BuffDoc b => b.Character ?? "Other",
|
||||
CharacterDoc c => c.Character ?? "Other",
|
||||
KeyDoc => "Keys",
|
||||
_ => "Other"
|
||||
};
|
||||
@@ -209,8 +209,8 @@
|
||||
private static string GetDisplayName(DocEntry doc) =>
|
||||
Path.GetFileNameWithoutExtension(doc.FileName);
|
||||
|
||||
private static string GetGroupId(string group) =>
|
||||
$"group-{group.GetHashCode():x}";
|
||||
private static string GetGroupId(string? group) =>
|
||||
$"group-{group?.GetHashCode() ?? 0:x}";
|
||||
|
||||
private static string GetDocId(DocEntry doc) =>
|
||||
$"doc-{doc.FileName.GetHashCode():x}";
|
||||
@@ -0,0 +1,15 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
||||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net10.0</TargetFramework>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<SupportedPlatform Include="browser" />
|
||||
<PackageReference Include="Microsoft.AspNetCore.Components.Web" Version="10.0.8" />
|
||||
<ProjectReference Include="..\Model\Model.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
@@ -0,0 +1,11 @@
|
||||
@using System.Net.Http
|
||||
@using System.Net.Http.Json
|
||||
@using Microsoft.AspNetCore.Components.Forms
|
||||
@using Microsoft.AspNetCore.Components.Routing
|
||||
@using Microsoft.AspNetCore.Components.Web
|
||||
@using Microsoft.AspNetCore.Components.Web.Virtualization
|
||||
@using Microsoft.JSInterop
|
||||
@using Model
|
||||
@using Shared
|
||||
@using Shared.Pages
|
||||
@using Shared.Components
|
||||
@@ -1,7 +1,6 @@
|
||||
@using Web.Pages
|
||||
<Router AppAssembly="@typeof(App).Assembly" NotFoundPage="typeof(NotFound)">
|
||||
<Router AppAssembly="@typeof(App).Assembly" AdditionalAssemblies="new[] { typeof(Shared.Pages.Home).Assembly }" NotFoundPage="typeof(Shared.Pages.NotFound)">
|
||||
<Found Context="routeData">
|
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
|
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(Shared.Components.MainLayout)"/>
|
||||
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
|
||||
</Found>
|
||||
</Router>
|
||||
@@ -13,7 +13,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Model\Model.csproj" />
|
||||
<ProjectReference Include="..\Shared\Shared.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="GenerateDocs" BeforeTargets="BeforeBuild">
|
||||
|
||||
@@ -7,5 +7,7 @@
|
||||
@using Microsoft.AspNetCore.Components.WebAssembly.Http
|
||||
@using Microsoft.JSInterop
|
||||
@using Model
|
||||
@using Web
|
||||
@using Web.Layout
|
||||
@using Shared
|
||||
@using Shared.Pages
|
||||
@using Shared.Components
|
||||
@using Web
|
||||
@@ -1,3 +1,3 @@
|
||||
{
|
||||
"frontmatterHierarchy": "character, category"
|
||||
"frontmatterHierarchy": "category, character"
|
||||
}
|
||||
+67
-32
@@ -20,6 +20,42 @@
|
||||
"icon": "lucide-file",
|
||||
"title": "Spells - 1. 2 - Dawnflare"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "f4d109641d4ecbeb",
|
||||
"type": "leaf",
|
||||
"pinned": true,
|
||||
"state": {
|
||||
"type": "bases",
|
||||
"state": {
|
||||
"file": "_Blessings.base",
|
||||
"viewName": "Table"
|
||||
},
|
||||
"pinned": true,
|
||||
"icon": "lucide-table",
|
||||
"title": "_Blessings"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 1
|
||||
},
|
||||
{
|
||||
"id": "1fd2867f1ea24a81",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "52472e89e903dd49",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "The Monarch.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "The Monarch"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
@@ -190,59 +226,58 @@
|
||||
"bases:Create new base": false
|
||||
}
|
||||
},
|
||||
"active": "cf07e32fae8559d4",
|
||||
"active": "52472e89e903dd49",
|
||||
"lastOpenFiles": [
|
||||
"_Blessings.base",
|
||||
"The Intrepid.md",
|
||||
"The Monarch.md",
|
||||
"The Usurper.md",
|
||||
"The Philosopher.md",
|
||||
"The Subduer.md",
|
||||
"The Vainglorious.md",
|
||||
"The Herectic.md",
|
||||
"The Mystic.md",
|
||||
"The Vehement.md",
|
||||
"The Trickerster.md",
|
||||
"Blessing/The Sinister.md",
|
||||
"Blessing/The Celestial.md",
|
||||
"Blessing/The Herald.md",
|
||||
"Blessing/The Wayfarer.md",
|
||||
"Debuff/Xavian",
|
||||
"Skill/Xavian",
|
||||
"Skill/Rime",
|
||||
"Character/Xavian",
|
||||
"Buff/Xavian",
|
||||
"Mouse",
|
||||
"Blessing",
|
||||
"Key",
|
||||
"Buff",
|
||||
"Spells - 1. 2 - Dawnflare.md",
|
||||
"Untitled.md",
|
||||
"Spells - 4. Q - Dawnbreaker Orb.md",
|
||||
"Spells - 6. E - Greater Heal.md",
|
||||
"Spells - 7. Shift+R - Luminous Barrier.md",
|
||||
"Spells - 8. Shift+T - Remove Magic.md",
|
||||
"Spells - Shift+Space - Avatar of Light.md",
|
||||
"Spells - 9. 3 - Rune of Renewal.md",
|
||||
"Xavian/Buff/Swift Reprival.md",
|
||||
"Buff/Xavian/Swift Reprival.md",
|
||||
"_Keyboard.canvas",
|
||||
"_Rime.canvas",
|
||||
"_Keyboard 1.canvas",
|
||||
"Xavian/Skill/Brilliant Flare.md",
|
||||
"Xavian/Character/Xavian.md",
|
||||
"Xavian/Skill/Brilliant Flash.md",
|
||||
"Xavian/Skill/Aura of Solace.md",
|
||||
"Xavian/Skill/Blinding Slash.md",
|
||||
"Vigour/Avatar of Light.md",
|
||||
"Skill/Xavian/Brilliant Flare.md",
|
||||
"Character/Xavian/Xavian.md",
|
||||
"Images/Pasted image 20260605123320.png",
|
||||
"Xavian/Omnislash.md",
|
||||
"Xavian/_Keyboard 2.canvas",
|
||||
"Xavian/_Base.base",
|
||||
"Xavian/Skill/Decree of the Sun.md",
|
||||
"_Vigour.canvas",
|
||||
"Pasted image 20260605132922.png",
|
||||
"Xavian/Skill/Solar Blades.md",
|
||||
"Rime/Brain Freeze.md",
|
||||
"Keys/C.md",
|
||||
"Images/Pasted image 20260223234556.png",
|
||||
"Images/Pasted image 20260223133526.png",
|
||||
"Rime/Skill",
|
||||
"Xavian/Debuff",
|
||||
"Xavian/Skill",
|
||||
"Xavian/Buff",
|
||||
"Xavian/Character",
|
||||
"Vigour/Throw Book.md",
|
||||
"Vigour/Throw Book.png",
|
||||
"Vigour/Throw Book Icon.png",
|
||||
"Vigour/Avatar of Light Icon.png",
|
||||
"Space.md",
|
||||
"Spells.md",
|
||||
"Shift.md",
|
||||
"Spells - 1. 2 - Dawnflare.md",
|
||||
"Hotkeys.md",
|
||||
"Xavian/Debuff/Blind.md",
|
||||
"Keys/Mouse 1.md",
|
||||
"Images/Pasted image 20260224121329.png",
|
||||
"Images/Pasted image 20260605113647.png",
|
||||
"Images/Pasted image 20260605112156.png",
|
||||
"Keys",
|
||||
"_.base",
|
||||
"_.canvas",
|
||||
"Xavian",
|
||||
"Vigour"
|
||||
"_.canvas"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
category: Blessing
|
||||
description: Your POWER abilities have a 5% / 8% / 13% / 20% chance to generate 1 Spirit Point toward your SPIRIT ability.
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
category: Blessing
|
||||
description: You start dungeons with 12 / 20 / 30 / 50 Spirit Points toward your SPIRIT ability.
|
||||
---
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
category: Blessing
|
||||
description: Your CORE abilities have 1% / 2% / 3% / 4% increase Critical Strike chance and 5% / 10% / 15% / 20% increased Critical Strike power
|
||||
---
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
category: Blessing
|
||||
description: Every 60 seconds you gain The Wayfarer granting you +6% / +10% / +16% / +25% Haste for 14 seconds. Each time you use your CORE ability, the time to The Wayfarer's next application is reduced by 0.2 to 8 seconds, relative to the cooldown of the CORE ability used. Abilities with no cooldown provide 0.2 seconds reduction.
|
||||
---
|
||||
Every 60 seconds you gain The Wayfarer granting you +6% / +10% / +16% / +25% Haste for 14 seconds. Each time you use your CORE ability, the time to The Wayfarer's next application is reduced by 0.2 to 8 seconds, relative to the cooldown of the CORE ability used. Abilities with no cooldown provide 0.2 seconds reduction.
|
||||
@@ -0,0 +1,4 @@
|
||||
---
|
||||
category: Blessing
|
||||
description: Each time you use a CORE ability, there is a 20% chance you drain 325% / 520% / 832% / 1331% Main Stat health from the nearest enemy, healing you for the same amount.
|
||||
---
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user