-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
38f2f74
commit 73324b3
Showing
13 changed files
with
60 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"Version": 1, | ||
"ProjectMap": { | ||
"9e1ca760-6e27-416f-b2fd-f286e9fb55a5": { | ||
"ProjectGuid": "9e1ca760-6e27-416f-b2fd-f286e9fb55a5", | ||
"DisplayName": "CharmMod", | ||
"ColorIndex": 0 | ||
} | ||
}, | ||
"NextColorIndex": 1 | ||
} |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
{ | ||
"ExpandedNodes": [ | ||
"", | ||
"\\Charms" | ||
"" | ||
], | ||
"SelectedNode": "\\CharmMod.sln", | ||
"PreviewInSolutionExplorer": false | ||
|
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using Modding; | ||
|
||
namespace Fyrenest | ||
{ | ||
internal class FyreChild : Charm | ||
{ | ||
public static readonly FyreChild Instance = new(); | ||
public override string Sprite => "FyreChild.png"; | ||
public override string Name => "Grimm's Flame"; | ||
public override string Description => "A fiery charm radiating strength. When worn, makes the bearer's Grimmchild more powerful.\n\nYour Grimmchild does more damage, is faster, and shoots quicker. These effects get more powerful as you attack more enemies."; | ||
public override int DefaultCost => 3; | ||
public override string Scene => "Ruins2_11"; | ||
public override float X => 0f; | ||
public override float Y => 0f; | ||
|
||
private FyreChild() {} | ||
|
||
public override CharmSettings Settings(SaveSettings s) => s.FyreChild; | ||
|
||
//refer to other mod, and look at void soul code for hitting enemies to make the abilities stronger. | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
//------------------------------------------------------------------------------ | ||
// <auto-generated> | ||
// This code was generated by a tool. | ||
// Runtime Version:4.0.30319.42000 | ||
// | ||
// Changes to this file may cause incorrect behavior and will be lost if | ||
// the code is regenerated. | ||
// </auto-generated> | ||
//------------------------------------------------------------------------------ | ||
|
||
using System; | ||
using System.Reflection; | ||
|
||
[assembly: System.Reflection.AssemblyCompanyAttribute("Fyrenest")] | ||
[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] | ||
[assembly: System.Reflection.AssemblyCopyrightAttribute("Copyright © 2022")] | ||
[assembly: System.Reflection.AssemblyDescriptionAttribute("A Hollow Knight Mod")] | ||
[assembly: System.Reflection.AssemblyFileVersionAttribute("1.5.2")] | ||
[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] | ||
[assembly: System.Reflection.AssemblyProductAttribute("Fyrenest")] | ||
[assembly: System.Reflection.AssemblyTitleAttribute("Fyrenest")] | ||
[assembly: System.Reflection.AssemblyVersionAttribute("1.5.2")] | ||
|
||
// Generated by the MSBuild WriteCodeFragment class. | ||
|
2 changes: 1 addition & 1 deletion
2
obj/Debug/net472/CharmMod.GeneratedMSBuildEditorConfig.editorconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
is_global = true | ||
build_property.RootNamespace = Fyrenest | ||
build_property.ProjectDir = C:\Users\oldfi\source\repos\Fyrenest\ | ||
build_property.ProjectDir = C:\Users\mitchell.oldfield2\Source\Repos\fyrenest\ |
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion
2
obj/Release/net472/CharmMod.GeneratedMSBuildEditorConfig.editorconfig
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
is_global = true | ||
build_property.RootNamespace = Fyrenest | ||
build_property.ProjectDir = C:\Users\oldfi\source\repos\Fyrenest\ | ||
build_property.ProjectDir = C:\Users\mitchell.oldfield2\Source\Repos\fyrenest\ |
Binary file not shown.
Binary file not shown.