Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| c05101e0b6 |
@@ -6,8 +6,6 @@ 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
|
||||
@@ -26,9 +24,5 @@ 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
|
||||
|
||||
+756
-836
File diff suppressed because it is too large
Load Diff
@@ -2,7 +2,7 @@ namespace Model;
|
||||
|
||||
public record SkillDoc : DocEntry
|
||||
{
|
||||
public string? Character { get; init; }
|
||||
public required string Character { get; init; }
|
||||
public string? Cast { get; init; }
|
||||
public string? Description { get; init; }
|
||||
public string? Key { get; init; }
|
||||
|
||||
@@ -1,15 +0,0 @@
|
||||
<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>
|
||||
@@ -1,11 +0,0 @@
|
||||
@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,6 +1,7 @@
|
||||
<Router AppAssembly="@typeof(App).Assembly" AdditionalAssemblies="new[] { typeof(Shared.Pages.Home).Assembly }" NotFoundPage="typeof(Shared.Pages.NotFound)">
|
||||
@using Web.Pages
|
||||
<Router AppAssembly="@typeof(App).Assembly" NotFoundPage="typeof(NotFound)">
|
||||
<Found Context="routeData">
|
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(Shared.Components.MainLayout)"/>
|
||||
<RouteView RouteData="@routeData" DefaultLayout="@typeof(MainLayout)"/>
|
||||
<FocusOnNavigate RouteData="@routeData" Selector="h1"/>
|
||||
</Found>
|
||||
</Router>
|
||||
@@ -198,10 +198,10 @@
|
||||
|
||||
private static string GetCharacterOrType(DocEntry doc) => doc switch
|
||||
{
|
||||
SkillDoc s => s.Character ?? "Other",
|
||||
DebuffDoc d => d.Character ?? "Other",
|
||||
BuffDoc b => b.Character ?? "Other",
|
||||
CharacterDoc c => c.Character ?? "Other",
|
||||
SkillDoc s => s.Character,
|
||||
DebuffDoc d => d.Character,
|
||||
BuffDoc b => b.Character,
|
||||
CharacterDoc c => c.Character,
|
||||
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() ?? 0:x}";
|
||||
private static string GetGroupId(string group) =>
|
||||
$"group-{group.GetHashCode():x}";
|
||||
|
||||
private static string GetDocId(DocEntry doc) =>
|
||||
$"doc-{doc.FileName.GetHashCode():x}";
|
||||
@@ -13,7 +13,7 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Shared\Shared.csproj" />
|
||||
<ProjectReference Include="..\Model\Model.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
<Target Name="GenerateDocs" BeforeTargets="BeforeBuild">
|
||||
|
||||
@@ -7,7 +7,5 @@
|
||||
@using Microsoft.AspNetCore.Components.WebAssembly.Http
|
||||
@using Microsoft.JSInterop
|
||||
@using Model
|
||||
@using Shared
|
||||
@using Shared.Pages
|
||||
@using Shared.Components
|
||||
@using Web
|
||||
@using Web
|
||||
@using Web.Layout
|
||||
@@ -0,0 +1,17 @@
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Build\Program.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Model\BuffDoc.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Model\CharacterDoc.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Model\DebuffDoc.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Model\DocEntry.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Model\DocsData.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Model\KeyDoc.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Model\SkillDoc.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\Layout\MainLayout.razor
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\Layout\NavMenu.razor
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\Pages\Docs.razor
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\Pages\Home.razor
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\Pages\Keyboard.razor
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\Pages\NotFound.razor
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\App.razor
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\Program.cs
|
||||
C:\ProgramData\Jenkins\.jenkins\workspace\Agent\workspace\Fellowship-Reference\Fellowship\Web\_Imports.razor
|
||||
+1
-2
@@ -2,6 +2,5 @@
|
||||
"obsidian-note-autocreator",
|
||||
"custom-font-loader",
|
||||
"calendar",
|
||||
"code-styler",
|
||||
"frontmatter-folder-organizer"
|
||||
"code-styler"
|
||||
]
|
||||
@@ -1,3 +0,0 @@
|
||||
{
|
||||
"frontmatterHierarchy": "category, character"
|
||||
}
|
||||
@@ -1,6 +0,0 @@
|
||||
/*
|
||||
THIS IS A GENERATED/BUNDLED FILE BY ESBUILD
|
||||
if you want to view the source, please visit the github repository of this plugin
|
||||
*/
|
||||
|
||||
"use strict";var d=Object.defineProperty;var F=Object.getOwnPropertyDescriptor;var p=Object.getOwnPropertyNames;var y=Object.prototype.hasOwnProperty;var w=(i,t)=>{for(var e in t)d(i,e,{get:t[e],enumerable:!0})},z=(i,t,e,n)=>{if(t&&typeof t=="object"||typeof t=="function")for(let r of p(t))!y.call(i,r)&&r!==e&&d(i,r,{get:()=>t[r],enumerable:!(n=F(t,r))||n.enumerable});return i};var S=i=>z(d({},"__esModule",{value:!0}),i);var b={};w(b,{default:()=>m});module.exports=S(b);var g=require("obsidian");var l=require("obsidian"),f={frontmatterHierarchy:"Category, Faction"},h=class extends l.PluginSettingTab{constructor(t,e){super(t,e),this.plugin=e}display(){let{containerEl:t}=this;t.empty(),t.createEl("h2",{text:"Frontmatter Folder Organizer"}),new l.Setting(t).setName("Frontmatter hierarchy").setDesc("Enter frontmatter keys in order. Files will be organized into folders based on these values.").addTextArea(e=>e.setPlaceholder("category").setValue(this.plugin.settings.frontmatterHierarchy).onChange(async n=>{this.plugin.settings.frontmatterHierarchy=n,await this.plugin.saveSettings()})),new l.Setting(t).setName("Organize files now").setDesc("Create folders and move markdown files according to the configured frontmatter hierarchy.").addButton(e=>e.setButtonText("Organize now").onClick(async()=>{await this.plugin.organizeFilesByFrontmatter()}))}};var m=class extends g.Plugin{async onload(){await this.loadSettings(),this.addCommand({id:"organize-frontmatter-folders",name:"Organize markdown by frontmatter hierarchy",callback:async()=>{await this.organizeFilesByFrontmatter()}}),this.addSettingTab(new h(this.app,this))}async organizeFilesByFrontmatter(){let t=this.getHierarchyKeys();if(!t.length){new g.Notice("Set a frontmatter hierarchy in plugin settings before organizing files.");return}let e=this.app.vault.getFiles().filter(r=>r.extension==="md"),n=0;for(let r of e){let a=this.getFolderSegmentsForFile(r,t);if(!a||!a.length)continue;let s=a.join("/");if(`${s}/${r.name}`===r.path)continue;await this.ensureFolderExists(s);let c=await this.getAvailableTargetPath(s,r.name);await this.app.vault.rename(r,c),n+=1}new g.Notice(`Organized ${n} markdown file${n===1?"":"s"} by frontmatter folder hierarchy.`)}getHierarchyKeys(){return this.settings.frontmatterHierarchy.split(/[,\r\n]+/).map(t=>t.trim()).filter(Boolean)}getFolderSegmentsForFile(t,e){let n=this.app.metadataCache.getFileCache(t);if(!n?.frontmatter)return null;let r=[];for(let a of e){let s=this.getFrontmatterValueByKey(n.frontmatter,a),o=this.normalizeFrontmatterValue(s);if(o===null)break;r.push(this.sanitizeFolderName(o))}return r.length?r:null}getFrontmatterValueByKey(t,e){let n=e.trim().toLowerCase();for(let[r,a]of Object.entries(t))if(r.trim().toLowerCase()===n)return a}normalizeFrontmatterValue(t){if(t==null||typeof t=="object")return null;let e=String(t).trim();return e.length?e:null}sanitizeFolderName(t){return t.replace(/[<>:"/\\|?*]/g,"-").trim()}async ensureFolderExists(t){let e=t.replace(/\\/g,"/").split("/").filter(Boolean),n="";for(let r of e)n=n?`${n}/${r}`:r,this.app.vault.getAbstractFileByPath(n)||await this.app.vault.createFolder(n)}async getAvailableTargetPath(t,e){let n=t.replace(/\\/g,"/"),r=`${n}/${e}`;if(!this.app.vault.getAbstractFileByPath(r))return r;let a=e.lastIndexOf("."),s=a>=0?e.slice(0,a):e,o=a>=0?e.slice(a):"",c=1;for(;;){let u=`${n}/${s}-${c}${o}`;if(!this.app.vault.getAbstractFileByPath(u))return u;c+=1}}async loadSettings(){this.settings=Object.assign({},f,await this.loadData())}async saveSettings(){await this.saveData(this.settings)}};
|
||||
@@ -1,10 +0,0 @@
|
||||
{
|
||||
"id": "frontmatter-folder-organizer",
|
||||
"name": "Frontmatter Folder Organizer",
|
||||
"version": "1.0.0",
|
||||
"minAppVersion": "1.0.0",
|
||||
"description": "Organize markdown files into folders based on frontmatter hierarchy.",
|
||||
"author": "Obsidian",
|
||||
"authorUrl": "https://obsidian.md",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
@@ -1,8 +0,0 @@
|
||||
/*
|
||||
|
||||
This CSS file will be included with your plugin, and
|
||||
available in the app when your plugin is enabled.
|
||||
|
||||
If your plugin does not need CSS, delete this file.
|
||||
|
||||
*/
|
||||
+46
-86
@@ -13,48 +13,12 @@
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Spells - 1. 2 - Dawnflare.md",
|
||||
"file": "Xavian/Omnistrike.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"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"
|
||||
"title": "Omnistrike"
|
||||
}
|
||||
}
|
||||
]
|
||||
@@ -226,58 +190,54 @@
|
||||
"bases:Create new base": false
|
||||
}
|
||||
},
|
||||
"active": "52472e89e903dd49",
|
||||
"active": "cf07e32fae8559d4",
|
||||
"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",
|
||||
"Buff/Xavian/Swift Reprival.md",
|
||||
"_Keyboard.canvas",
|
||||
"_Rime.canvas",
|
||||
"_Keyboard 1.canvas",
|
||||
"Skill/Xavian/Brilliant Flare.md",
|
||||
"Character/Xavian/Xavian.md",
|
||||
"Images/Pasted image 20260605123320.png",
|
||||
"Xavian/_Keyboard 2.canvas",
|
||||
"_Vigour.canvas",
|
||||
"Pasted image 20260605132922.png",
|
||||
"Images/Pasted image 20260223234556.png",
|
||||
"Images/Pasted image 20260223133526.png",
|
||||
"Vigour/Throw Book.png",
|
||||
"Vigour/Throw Book Icon.png",
|
||||
"Vigour/Avatar of Light.md",
|
||||
"Xavian/_Base.base",
|
||||
"Vigour/Avatar of Light Icon.png",
|
||||
"Spells - 6. E - Greater Heal.md",
|
||||
"Xavian/Sky Crash.md",
|
||||
"Xavian/Solar Shield.md",
|
||||
"Xavian/Omega Reprieval.md",
|
||||
"Xavian/_Keyboard 2.canvas",
|
||||
"Xavian/Taunt.md",
|
||||
"Xavian/Sun Struck.md",
|
||||
"Xavian/Xavian.md",
|
||||
"Xavian/Brilliant Flare.md",
|
||||
"Xavian/Brilliant Flash.md",
|
||||
"Xavian/Swift Reprival.md",
|
||||
"Xavian/Shinning Halo.md",
|
||||
"Xavian/Blind.md",
|
||||
"Xavian/Ruptured Dawn.md",
|
||||
"Xavian/Aura of Solace.md",
|
||||
"Xavian/Decree of the Sun.md",
|
||||
"Xavian/Interupt.md",
|
||||
"Xavian/Solar Blades.md",
|
||||
"Xavian/Blinding Slash.md",
|
||||
"Xavian/Omnistrike.md",
|
||||
"Xavian/Sun Strike.md",
|
||||
"Pasted image 20260605132922.png",
|
||||
"Q.md",
|
||||
"Keys/Shift + 1.md",
|
||||
"Shift.md",
|
||||
"Images/Pasted image 20260223234556.png",
|
||||
"Hotkeys.md",
|
||||
"Images/Pasted image 20260224121329.png",
|
||||
"Images/Pasted image 20260605113647.png",
|
||||
"Images/Pasted image 20260605112156.png",
|
||||
"_.canvas"
|
||||
"Frost Bolt Icon.png",
|
||||
"Keys",
|
||||
"Images/Pasted image 20260605125121.png",
|
||||
"Images/Pasted image 20260605125057.png",
|
||||
"Images/Pasted image 20260605124858.png",
|
||||
"_.base",
|
||||
"_.canvas",
|
||||
"_Keyboard.canvas",
|
||||
"Xavian",
|
||||
"_Keyboard 1.canvas",
|
||||
"_Rime.canvas",
|
||||
"_Vigour.canvas",
|
||||
"Vigour",
|
||||
"Rime"
|
||||
]
|
||||
}
|
||||
@@ -1,4 +0,0 @@
|
||||
---
|
||||
category: Blessing
|
||||
description: Your POWER abilities have a 5% / 8% / 13% / 20% chance to generate 1 Spirit Point toward your SPIRIT ability.
|
||||
---
|
||||
@@ -1,4 +0,0 @@
|
||||
---
|
||||
category: Blessing
|
||||
description: You start dungeons with 12 / 20 / 30 / 50 Spirit Points toward your SPIRIT ability.
|
||||
---
|
||||
@@ -1,4 +0,0 @@
|
||||
---
|
||||
category: Blessing
|
||||
description: Your CORE abilities have 1% / 2% / 3% / 4% increase Critical Strike chance and 5% / 10% / 15% / 20% increased Critical Strike power
|
||||
---
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
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,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,3 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
@@ -1,4 +0,0 @@
|
||||
---
|
||||
category: Key
|
||||
---
|
||||
Horse
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -1,4 +1,4 @@
|
||||
---
|
||||
category: Key
|
||||
type: Key
|
||||
action: Move Back
|
||||
---
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category: Key
|
||||
type: Key
|
||||
action: Move Forward
|
||||
---
|
||||
Move forward
|
||||
@@ -1,4 +1,4 @@
|
||||
---
|
||||
category: Key
|
||||
type: Key
|
||||
action: Move Right
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Mouse
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Mouse
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Mouse
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Mouse
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Mouse
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -1,4 +1,4 @@
|
||||
---
|
||||
category: Key
|
||||
type: Key
|
||||
action: Move Back
|
||||
---
|
||||
@@ -1,5 +1,5 @@
|
||||
---
|
||||
category: Key
|
||||
type: Key
|
||||
action: Move Forward
|
||||
---
|
||||
Move forward
|
||||
@@ -1,4 +1,4 @@
|
||||
---
|
||||
category: Key
|
||||
type: Key
|
||||
action: Move Right
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -1,4 +1,4 @@
|
||||
---
|
||||
category: Key
|
||||
type: Key
|
||||
action: Move Left
|
||||
---
|
||||
@@ -1,4 +1,4 @@
|
||||
---
|
||||
category: Key
|
||||
type: Key
|
||||
action: Jump
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
@@ -0,0 +1,3 @@
|
||||
---
|
||||
type: Key
|
||||
---
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user