Modding Tutorials/Plague Gun (1.1)

From RimWorld Wiki
Revision as of 23:33, 19 June 2020 by Dninemfive (talk | contribs) (Add note about commenting, per JC and Garthor)
Jump to navigation Jump to search

This tutorial is a rewrite of the original by Jecrell (Thread), updated to 1.1 by dninemfive.

Introduction

In this tutorial we will be using most of the tools available to a Rimworld modder to create a custom weapon, known as the Plague Gun.

This weapon will, when its shots hit a living target, have a chance to apply the Plague hediff ("health difference") to that target.

To do this, we will create XML ThingDefs for the gun and projectile, create a C# assembly which determines what happens when the projectile hits a target, and link that behavior back to the XML.

This tutorial will assume a basic familiarity with XML and C# syntax. It should be simple enough to follow if you're only a beginner.

If you have no XML or C# experience, there are good tutorials for XML here and C# here.

The Completed Mod

For a working example, check out this GitHub repo.

Required Items

Make sure to have the following installed, at least one per row:

Notepad++ or Atom or Sublimetext or VSCode Use any text editor that allows you to edit XML files and use "Find in Files" for referencing.
Visual Studio Community Use this or any other C# compiler to turn scripts into .dll files that RimWorld can use.
dnSpy or ILSpy This is for referencing the game's decompiled C# scripts.

For more detailed recommendations, see here.

XML Stage

In this stage we will set up the mod and create XML files which add our things to the database.

  1. Locate your RimWorld folder.
    • On Steam, you can find it by right-clicking the game in your games list > Properties > Local Files > Browse Local Files...
      • By default, it will be located at C:\Program Files (x86)\Steam\steamapps\common\RimWorld if you bought it through Steam on Windows.
    • If you bought the DRM-free version, it will be located wherever you unzipped it.
    • On GOG, you can find it by right-clicking the game in your games list > Manage Installation > Show Folder
      • By default it will be located at C:\Program Files (x86)\GOG Galaxy\Games\RimWorld if you bought it through GOG on Windows.
  2. Create a mod folder.Template:BrRimWorld>Mods>PlagueGun
    • Go into the Mods folder.
    • Make a new folder with our mod's title: PlagueGun
  3. Inside PlagueGun, make an About folder.Template:BrRimWorld>Mods>PlagueGun>About
  4. Inside the About folder, make a new text file and rename it About.xml.Template:BrRimWorld>Mods>PlagueGun>About>About.xml
    • You will need a good text editor to make a proper XML file -- see required items. I always make a .txt file first and change it to .xml. If you can't rename your file's type, make sure you have filetypes visible in your operating system's file view settings.
    • About.xml is the file that shows your mod in the mod list inside the RimWorld game. It is also used when creating a Workshop upload for Steam.
    • At the top of an XML file, always include this for RimWorld. It basically just gives the game some info about how to read the file.
      <?xml version="1.0" encoding="utf-8"?>
      Note: the version tag should always be "1.0". It has no relation with the current RimWorld version.
    • Then add the MetaData tags for the Workshop and in-game Mod list.
      <ModMetaData>
        <name>Test Mod - Plague Gun</name> <!-- The name of your mod in the mod list -->
        <author>YourNameHere</author>
        <packageId>YourNameHere.PlagueGun</packageId> <!-- a unique identifier for your mod. Must contain only a-z and periods, no spaces. -->
        <supportedVersions> <!-- the version(s) your mod supports -->
          <li>1.1</li>
        </supportedVersions>
        <description>This mod adds a plague gun, a weapon that has a chance to give your enemies the plague.\n\nFor version 1.1.</description>
      </ModMetaData>
    • Save the file.
  5. Add a Preview.png or Preview.jpeg to your About folder.Template:BrRimWorld>Mods>PlagueGun>About>Preview.png
    • This lets users see what your mod looks like in the RimWorld mod list or on the Steam Workshop.
    • The conventional dimensions to fit the preview image on Steam are 640x360. The image must be smaller than 1mb.
    • Example: Preview.png
  6. Make a Defs folder in your Mod's directory.Template:BrRimWorld>Mods>PlagueGun>Defs
    • RimWorld will read your XML files in any subdirectory of Defs. You can name your directories however you like under that folder. Defs>StrangeNewAlienGuns>MyGuns.xml will work. For the purposes of this tutorial, however, we will use the RimWorld standard structure.
    • What are Defs? Main article: Defs
      • RimWorld uses things called Defs (short for "definitions") like blueprints for in-game objects. Instead of using hidden C# code, RimWorld will look up an XML Def and copy it to the game world. This makes things easier for us, the modders. Everything from characters, animals, floors, damages, buildings, and even diseases in RimWorld use Defs. We're going to make Defs for our Plague Gun and Plague Bullet.
  7. Make a new ThingDefs folder in your Defs folder.Template:BrRimWorld>Mods>PlagueGun>Defs>ThingDefs
  8. Make a new text file in your ThingDefs folder, and change it to RangedWeapon_PlagueGun.xml.Template:BrRimWorld>Mods>PlagueGun>Defs>ThingDefs>RangedWeapon_PlagueGun.xml
    • This file will contain the blueprints (ThingDefs) for our new gun and bullets.
    • Next we will fill out our XML file by copying an existing revolver's ThingDef and a revolver bullet ThingDef.
    • In RimWorld, it is often best to use the XML attribute ParentName="BaseBullet" when making a bullet, because it will copy XML code from a pre-existing BaseBullet ThingDef, which can save us time and key taps. Main article: Inheritance
  9. First, add our favourite line to the top.
    <?xml version="1.0" encoding="utf-8"?>
  10. Add the <Defs> opening and closing tags to the XML to hold our new code.
    <?xml version="1.0" encoding="utf-8"?>
    <Defs>
    
    </Defs>
  11. Use your text editor. Use its "Find in Files" function to reference and copy Bullet_Revolver to your XML file.
    • Find in Files is one of my most-used functions. In Notepad++, if you press CTRL+SHIFT+F, you can go to the Find in Files screen. From there, you can enter a phrase to search for, and then you can enter the file path to search through. This makes it wildly easier to search for examples in RimWorld's Core. RimWorld holds copies of all of its weapons, items, buildings, etc. inside the Mods/Core directory.
    • So, start by using Find in Files... and find this: defName>Bullet_Revolver
    • When you find Bullet_Revolver, copy from its beginning <ThingDef> all the way until its closing </ThingDef> tag into your XML File.
  12. Use your text editor's "Find in Files" function to reference and copy Gun_Revolver to your XML file.
    • Typically, Gun_Revolver is right below Bullet_Revolver in XML, so hopefully this will be easy to find and copy.
    • Again, copy the ThingDef block to your new XML file.
  13. Change the defName, labels, and other stats of Bullet_Revolver and Revolver in your XML file to make them unique.
    • A word on defNames: defNames are how the game references defs anywhere they're used in XML, since they're unique. When telling your plague gun to fire plague bullets, for instance, set its defaultProjectile to your projectile's defName, like so:
      <defaultProjectile>TST_Bullet_PlagueGun</defaultProjectile>
    • TIP: Use prefixes to avoid conflicting with other mods. RimWorld will overwrite any def with <defName>Tobacco</defName>, for instance, if it finds another with the same defName. If two modders use different prefixes, however, e.g. <defName>VGP_Tobacco</defName> and <defName>ROM_Tobacco</defName>, no conflict will occur, and both mods can co-exist. This tutorial uses TST_ for its example prefix. Main article: Compatibility
    • By contrast, labels, descriptions, and other non-defName tags can generally be non-unique without a risk of conflicts, except perhaps confusion for the end user.

If all you were interested in is making a gun mod, you are done. You'll of course want to edit values like the damage it does, and test your mod. You'll also want to change the texturePath to your unique art, and whatever else.

Completed Example

Note: The example is up-to-date for 1.1 and will likely be outdated in the future. The above steps should always be relevant.

<?xml version="1.0" encoding="utf-8" ?>
<Defs>
  <ThingDef ParentName="BaseBullet">
    <defName>TST_Bullet_PlagueGun</defName>
    <label>plague bullet</label>
    <graphicData>
      <texPath>Things/Projectile/Bullet_Small</texPath>
      <graphicClass>Graphic_Single</graphicClass>
    </graphicData>
    <projectile>
      <flyOverhead>false</flyOverhead>
      <damageDef>Bullet</damageDef>
      <damageAmountBase>12</damageAmountBase>
      <stoppingPower>1</stoppingPower>
      <speed>55</speed>
    </projectile>
  </ThingDef>

  <ThingDef ParentName="BaseHumanMakeableGun">
    <defName>TST_Gun_PlagueGun</defName>
    <label>plague gun</label>
    <description>A curious weapon notable for its horrible health effects.</description>
    <graphicData>
      <texPath>Things/Item/Equipment/WeaponRanged/Revolver</texPath>
      <graphicClass>Graphic_Single</graphicClass>
    </graphicData>
    <soundInteract>Interact_Revolver</soundInteract>
    <statBases>
      <WorkToMake>4000</WorkToMake>
      <Mass>1.4</Mass>
      <AccuracyTouch>0.80</AccuracyTouch>
      <AccuracyShort>0.75</AccuracyShort>
      <AccuracyMedium>0.45</AccuracyMedium>
      <AccuracyLong>0.35</AccuracyLong>
      <RangedWeapon_Cooldown>1.6</RangedWeapon_Cooldown>
    </statBases>
    <weaponTags>
      <li>SimpleGun</li>
      <li>Revolver</li>
    </weaponTags>
    <costList>
      <Steel>30</Steel>
      <ComponentIndustrial>2</ComponentIndustrial>
    </costList>
    <recipeMaker>
      <skillRequirements>
        <Crafting>3</Crafting>
      </skillRequirements>
    </recipeMaker>
    <verbs>
      <li>
        <verbClass>Verb_Shoot</verbClass>
        <hasStandardCommand>true</hasStandardCommand>
        <defaultProjectile>TST_Bullet_PlagueGun</defaultProjectile>
        <warmupTime>0.3</warmupTime>
        <range>25.9</range>
        <soundCast>Shot_Revolver</soundCast>
        <soundCastTail>GunTail_Light</soundCastTail>
        <muzzleFlashScale>9</muzzleFlashScale>
      </li>
    </verbs>
    <tools>
      <li>
        <label>grip</label>
        <capacities>
          <li>Blunt</li>
        </capacities>
        <power>9</power>
        <cooldownTime>2</cooldownTime>
      </li>
      <li>
        <label>barrel</label>
        <capacities>
          <li>Blunt</li>
          <li>Poke</li>
        </capacities>
        <power>9</power>
        <cooldownTime>2</cooldownTime>
      </li>
    </tools>
  </ThingDef>
</Defs>

C# Workspace Setup

Next, we will set up a workspace to write C# code, which is a little bit more involved than just using a text editor.

  1. Open your compiler of choice for C#.
    • This tutorial will assume you're using Visual Studio Community edition, a free Windows-based compiler for C# code.
  2. Make a new Visual C# Class Library .NET Framework project. Name it PlagueGun. Make its directory RimWorld>Mods>PlagueGun>Source
    • File → New → Project → Class Library (.NET Framework).
    • Don't get this confused with "Class Library (.NET Standard)" or "Class Library (.NET Core)"!
  3. Go into the project properties.
    • Project → PlagueGun Properties.
  4. In that window, change the Target Framework version to .NET Framework 4.7.2
    • Forgetting to do this will cause lots of errors.
    • Select Yes when it asks you if you're sure to change the framework.
  5. Go to the Build tab.
  6. Change the output path to be RimWorld\Mods\PlagueGun\Assemblies
    • All .dll files will go into this directory when we "build" our code library.
  7. In that same window, click the Advanced... button.
  8. Change Debugging Information to none.
    • This prevents a simple error that occurs when RimWorld doesn't know what to do with the debug .pdb files.
  9. In Solution Explorer. Go into Properties and edit AssemblyInfo.cs. Change the name of your assembly and assembly file version number as you like.
    • This doesn't have to all be the same as your namespace, but it doesn't hurt to be consistent.
  10. In the main option bar at the top of the visual studio (File, Edit, View...), click Project, and click Add Reference.
  11. Click Browse and go to RimWorld\RimWorldWin64_Data\Managed
  12. Add references to Assembly-CSharp.dll, UnityEngine.dll, and UnityEngine.CoreModule.dll.
    • In 1.1 the Unity DLLs were split up and are no longer all contained in the same module.
    • For our purposes we only need UnityEngine.CoreModule.dll, as it contains some code we will use later.
    • In general, it's also a good idea to add UnityEngine.dll, which allows Visual Studio to tell you which modules you're missing if you get related errors.
  13. In the Solution Explorer (typically on the right side of the application), look at the references drop down list.
  14. Select Assembly-CSharp. Check the Properties section (usually under Solution Explorer). Make sure the properties section has Copy Local set to FALSE.
  15. Do this (Copy Local to FALSE) for UnityEngine and UnityEngine.CoreModule as well.
    • By doing this, we prevent the project from causing one million hash conflicts by copying the entire game's code twice!

Now the workspace setup is complete and we can add C# code to RimWorld.

Note: Exact folder names might differ between installs. The naming scheme differs slightly between the DRM-free and Steam version of the mod.

C# Coding

Now let's start writing the code we'll need to add custom behavior to our projectiles.

Getting Started

  1. Open Class1.cs in the sidebar, usually on the right in Visual Studio.
  2. Right-click and rename the .cs file to your liking.
  3. Add these lines to the top this file (and every .cs file you make from now on for modding RimWorld).
    using RimWorld;
    using Verse;
    • These tell the code you're working with RimWorld. Without these, our code will not be able to understand references to RimWorld code.
  4. Add a namespace line. By default, this is your project name. Take note - you will need this to connect to XML later.
    namespace TST_PlagueGun;
    • Note: Using a prefix on the namespace is not required, but it's good for consistency and in the rare case they may overlap - such as when multiple people follow the same tutorial to learn how to mod.

Connecting XML and C#, Part 1

  1. First, let's add a way to read XML data into your assembly.
  2. Rename public class Class1 to ModExtension_Plaguebullet and make it inherit DefModExtension. As a reminder, inheritance looks like this:
    public class ModExtension_PlagueBullet : DefModExtension
    • Note: Renaming things in an IDE like Visual Studio is best done by pressing F2 or right-clicking the item/name. Doing it like that will change all occurrences of that thing, so everything that references your namespace or Class1 will now use the new name.
  3. Add the following fields in ModExtension_PlagueBullet:
    public float addHediffChance = 0.05f;
    public HediffDef hediffToAdd;
    • Here, we're giving the field addHediffChance a default value, which means it doesn't need to be set explicitly in XML.
    • Note: Standard modding practice is to give fields exposed to XML camelCase names, for consistency with vanilla XML.
  4. Now let's add the XML which connects to this ModExtension. In your TST_Bullet_PlagueGun def, add the following lines:
    <modExtensions>
        <li Class="TST_PlagueGun.ModExtension_PlagueBullet">
            <addHediffChance>0.05</addHediffChance>
            <hediffToAdd>Plague</hediffToAdd>
        </li>
    </modExtensions>
    • Note: Note the XML tags match the names of the fields in the C# class. This allows the XML to provide data to the program. When the mod is loaded, the XML will be read, and used to fill in the corresponding fields.
    • Additionally, take care to note you can set the value of addHediffChance to any valid floating point number and it will be reflected in-game. The value given in C# is only the default value if unset.

Writing the Projectile

  1. Let's make the actual projectile. For this tutorial, we're going to make a new projectile that checks for impact and adds a Hediff (health differential - poison, toxins, implants, anything).
  2. First, create a new .cs file by right-clicking the PlagueGun part of the Solution Explorer and selecting Add > New Item.
    • Note: in C#, you can have multiple class definitions in a single file. We're just making a new file for organizational purposes.
  3. Make your new class inherit the Bullet class (a child of the Projectile class), so the game will treat your new projectile like a bullet and not throw (fun) errors.
    public class Projectile_PlagueBullet : Bullet
  4. First, let's connect our new projectile to the relevant ModExtension:
    public ModExtension_PlagueBullet Props => def.GetModExtension<ModExtension_PlagueBullet>();
    • This line is a Property, basically a method which doesn't take any arguments, and can generally speaking be treated as a variable. See this article for more details.
  5. Now, let's start the actual core code of this mod. Let's begin by overriding the Impact method on the base Bullet class, like so:
    protected override void Impact(Thing hitThing)
    • The override keyword tells the compiler that we're replacing the functionality of the Impact method from the Bullet class we're inheriting from.
  6. First, let's call the base version of this method so we don't need to rewrite all the logic about damaging a pawn - we only care about adding the hediff after damage occurs.
    base.Impact(hitThing);
  7. Next, we check to make sure the ModExtension was properly loaded, that we hit something, and that what we hit was a Pawn.
    if (Props != null && hitThing != null && hitThing is Pawn hitPawn)
    • Note: Null checking is a very important skill, especially for Rimworld modding. If you ever get a NullReferenceException, check to make sure you're correctly handling null values.
    • Also, note that we initialize a Pawn version of the hitThing while checking its type; we'll use this later. This statement also null-checks this new variable, in case you were wondering.
  8. Now that we know we hit a pawn, we generate a random number to see whether to apply the hediff.
    float rand = Rand.Value;
    if (rand <= Props.addHediffChance)
    • Rand is the base game's randomness generation class. Value grabs the next random number between 0 and 1 and updates the class.
  9. If a hediff is applied, we want to alert the player, so we create a message in the top-left of the screen.
    Messages.Message("TST_PlagueBullet_SuccessMessage".Translate(
    	this.launcher.Label, hitPawn.Label
    ), MessageTypeDefOf.NeutralEvent);
  10. Before adding the hediff, we need to check if the pawn already has it, so we get the hediff from the pawn, if it exists.
    Hediff plagueOnPawn = hitPawn.health?.hediffSet?.GetFirstHediffOfDef(Props.hediffToAdd);
    • Note: The ?. is called the null conditional operator. It's basically an in-line null check; if the hit pawn's health tracker (health) or hediff set (hediffSet) are null it sets plagueOnPawn to null instead of throwing an error.
  11. Now we finally add the hediff. If the pawn already has the plague we just increase its severity; otherwise, we create and add a new hediff with a random severity.
    float randomSeverity = Rand.Range(0.15f, 0.30f);
    if (plagueOnPawn != null)
    {
    	plagueOnPawn.Severity += randomSeverity;
    }
    else
    {
    	Hediff hediff = HediffMaker.MakeHediff(Props.hediffToAdd, hitPawn);
    	hediff.Severity = randomSeverity;
    	hitPawn.health.AddHediff(hediff);
    }

Whew.

Let's take a break and recap for a second. If you've followed the projectile section so far, this is the code you should have in your new .cs file:

using Verse;
using RimWorld;

namespace TST_PlagueGun
{
    public class Projectile_PlagueBullet : Bullet
    {
        public ModExtension_PlagueBullet Props => base.def.GetModExtension<ModExtension_PlagueBullet>();

        protected override void Impact(Thing hitThing)
        {
            base.Impact(hitThing);
            if (Props != null && hitThing != null && hitThing is Pawn hitPawn)
            {
                float rand = Rand.Value;
                if (rand <= Props.addHediffChance)
                {
                    Messages.Message("TST_PlagueBullet_SuccessMessage".Translate(
                        this.launcher.Label, hitPawn.Label
                    ), MessageTypeDefOf.NeutralEvent);
                    Hediff plagueOnPawn = hitPawn.health?.hediffSet?.GetFirstHediffOfDef(Props.hediffToAdd);
                    float randomSeverity = Rand.Range(0.15f, 0.30f);
                    if (plagueOnPawn != null)
                    {
                        plagueOnPawn.Severity += randomSeverity;
                    }
                    else
                    {
                        Hediff hediff = HediffMaker.MakeHediff(Props.hediffToAdd, hitPawn);
                        hediff.Severity = randomSeverity;
                        hitPawn.health.AddHediff(hediff);
                    }
                }
            }
        }
    }
}

Don't worry, we're almost finished. In fact, if you compile right now the gun will work - there just won't be any feedback if the shooter misses. This might be desirable, but let's add some feedback anyway.

Well, that's a little bit of a lie. You'd also need to add the <thingClass> node to the XML, given below.

We want to add an else block to our if (rand <= Props.addHediffChance)) statement. This is where keeping track of curly braces comes in; Visual Studio should draw vertical lines between the correct curlies. Add this:

else
{
    MoteMaker.ThrowText(hitThing.PositionHeld.ToVector3(), hitThing.MapHeld, "TST_PlagueBullet_FailureMote".Translate(Props.addHediffChance), 12f);
}
  • This throws a mote (particle effect, essentially), with text stating that the plague was not applied, at the target's position.
  • Fun fact: the .ToVector3() call is the entire reason we needed to reference UnityEngine and UnityEngine.CoreModule.

Connecting XML and C#, Part 2

Finally, we need to make sure our projectile's def tells the game to use our new Projectile_PlagueBullet class instead of Bullet.

<thingClass>TST_PlagueGun.Projectile_PlagueBullet</thingClass>

We're done! Your final Projectile_PlagueBullet class should look like this:

using Verse;
using RimWorld;

namespace TST_PlagueGun
{
    public class Projectile_PlagueBullet : Bullet
    {
        public ModExtension_PlagueBullet Props => base.def.GetModExtension<ModExtension_PlagueBullet>();

        protected override void Impact(Thing hitThing)
        {
            base.Impact(hitThing);
            if (Props != null && hitThing != null && hitThing is Pawn hitPawn)
            {
                float rand = Rand.Value;
                if (rand <= Props.addHediffChance)
                {
                    Messages.Message("TST_PlagueBullet_SuccessMessage".Translate(
                        this.launcher.Label, hitPawn.Label
                    ), MessageTypeDefOf.NeutralEvent);
                    Hediff plagueOnPawn = hitPawn.health?.hediffSet?.GetFirstHediffOfDef(Props.hediffToAdd);
                    float randomSeverity = Rand.Range(0.15f, 0.30f);
                    if (plagueOnPawn != null)
                    {
                        plagueOnPawn.Severity += randomSeverity;
                    }
                    else
                    {
                        Hediff hediff = HediffMaker.MakeHediff(Props.hediffToAdd, hitPawn);
                        hediff.Severity = randomSeverity;
                        hitPawn.health.AddHediff(hediff);
                    }
                }
                else
                {
                    MoteMaker.ThrowText(hitThing.PositionHeld.ToVector3(), hitThing.MapHeld, "TST_PlagueBullet_FailureMote".Translate(Props.addHediffChance), 12f);
                }
            }
        }
    }
}

Just compile and test your work; the plague will be properly applied and everything.

Note: Code you write on your own should not look like this - for one thing, it should be well-commented so that others (even if it's just you in the future) know exactly what you're trying to do and how you're doing it. The code in the repo is probably over-commented and designed for a general audience but I recommend reviewing it.

Localization

...well, almost. If you did test the gun just now, you'll have seen that the text was all distorted, using special characters which looked like the normal ones instead of text you expected. This is because of the use of .Translate() on keys which do not have translations in the language database. We just need to add those, and we'll be all set!

  1. First, create a bunch of folders, starting in the root of your mod folder:Template:BrLanguages>English>Keyed
  2. Next, create a new file called PlagueGun_Keys.xml, with our favorite header.
  3. This will be really quick. Add the opening and closing <LanguageData> tags:
    <LanguageData>
    </LanguageData>
  4. And, finally, add translations for the two keys used in the projectile class.
    <TST_PlagueBullet_FailureMote>Failure: {0} chance</TST_PlagueBullet_FailureMote>
    <TST_PlagueBullet_SuccessMessage>{0} infected {1} with the plague!</TST_PlagueBullet_SuccessMessage>
    • The {0} and {1} in these keys will be replaced with the first and second arguments, respectively, of the .Translate() calls. For reference:
      // successful hit message
      "TST_PlagueBullet_SuccessMessage".Translate(this.launcher.Label, hitPawn.Label)
      // unsuccessful hit mote
      "TST_PlagueBullet_FailureMote".Translate(Props.addHediffChance)
    • If you give .Translate() more arguments, you can use {2}, {3}, &c.
    • Note that, since you only passed one argument to the failure message, {1} would not be replaced with anything.
  5. Your PlagueGun_Keys.xml file should look like this:
    <?xml version="1.0" encoding="utf-8" ?>
    <LanguageData>
    	<TST_PlagueBullet_FailureMote>Failure: {0} chance</TST_PlagueBullet_FailureMote>
    	<TST_PlagueBullet_SuccessMessage>{0} infected {1} with the plague!</TST_PlagueBullet_SuccessMessage>
    </LanguageData>

Next Steps

This concludes this tutorial. Congratulations on making it this far; you now have a solid understanding of XML and C# modding, and of connecting these two. There's a lot more to learn, especially on the C# end, so make sure to practice. If you have any questions don't hesitate to hit up the Discord#mod-development or the forums for help.

As for this mod, you might want to add custom textures or sounds. For your next, you might want to try messing around with Harmony or see other tutorials for inspiration.

See also