tModLoader Mod List

Create

Find by name: | Back to Full List

Display Name Version | Size Author Last Updated tModLoader Version Downloads | Hot
FDash
Download v1.2 (1.9 KB)

Jaunawab

FDash allows you to use shield of cthulhu's dash, without shield of cthulhu. Also adds 1k max hp.

Localizer Package
6 years ago tModLoader v0.10.1.5 Edit | Delete
Sentinal Mod
Download v1.1.7 (58 KB)

bowserjr14

Ever wanted some extra, really cool, actually balanced stuff in Terraria? Well, look no further, the sentinal mod is just for you!
Features:
-Weapons:
-LagBow: Designed only to lag the game.
-Happy Bot: Early hardmode mount that has can fly infinitely, but is insanely expensive to craft.
-Hellstorm: Late pre-hardmode magic weapon that fires a concentrated laser at the mouse curser.
-Raiding Bows: Fully automatic bows with variants placed throughout the game.
-Special Forces Weapons: mid hardmode guns fitted with camos.
-Godly Armada: A mid hardmode weapon that acts like a ramming spear (note: this weapon is a bit buggy with hit registration).
-The Exucutioner: An endgame sword with high damage and a projectile.
-The King's Broadsword: A pre-hardmode sword with high damage and autoswing.
-Peacekeeper: Pre-hardmode boomstick upgrade.
-Nano SMG: Mid hardmode machine-pistol that fires nano bullets.
-Warrior's Sword: Early hardmode sword with a fast projectile.
-Star Cannon Z: Early hardmode star cannon upgrade.
-Bearcat: Early-Hardmode Automatic-Shotgun.
-Big Boy Torch: Early game torch that spews fire everywhere.
-Shockwave Cannon: Early-hardmode ranged weapon that does not require ammo.
-Earthquake Cannon: Endgame Upgrade to the Shockwave Cannon
-Bloodshark: Engame Minishark upgrade that turns musket balls into luminite bullets

-Accessories:
-Summoner's Shield: Late pre-hardmode shield that boosts summon stats.
-Advanced Summoner's Shield: Early hardmode upgrade to the summoner's shield
-Powerful Summoner's Shield: Mid-hardmode upgrade to, you guessed it, the summoner's sheld!
-Perfected Summoner's Shield: Endgame, final form of the summoner's shield
-Beserker's Shield: Melee based shield that boosts damage and life stats.

-I work on this mod whenever I can, so new features will come soon!

-Importatn Versions History
1.1.1 - July 30th, 2019
1.1.3 & 1.1.4 - August 2nd, 2019
1.1.5 & 1.1.6 - August 5th, 2019
1.1.

Localizer Package
6 years ago tModLoader v0.10.1.5 Edit | Delete
PrettyBadSword
Download v0.1.4 (3 KB)

boredProgrammer

This mod implements a pretty bad sword.

Localizer Package
7 years ago tModLoader v0.10.1.4 Edit | Delete
Crimson Slasher
Download v0.1 (3.3 KB)

ItsAnEruption

Crimson Slasher does one thing. It adds a new sword called the Crimson Slasher, designed to be obtained after killing the Brain Of Cthulhu.

Localizer Package
7 years ago tModLoader v0.10.1.3 Edit | Delete
Disable enemy spawns while bosses are active
Download v1.0 (5.4 KB)

zoroarkcity

Does exactly what the title says. When a boss is alive and no invasions are active, max spawns are set to 0.

Localizer Package
5 years ago tModLoader v0.11.7.5 Edit | Delete
TimeTravel
Download v0.1 (11.1 KB)

SirBashley

This is cheese

-
-
-
-

Localizer Package
6 years ago tModLoader v0.10.1.5 Edit | Delete
Configurable Growth Speeds
Download v1.0 (9.2 KB)

NuovaPrime

A simple mod I created that lets you configure the world tick rate using modconfig. Don't know what the world tick rate is? The world tick rate dictates how fast things like plants and trees grow, and how fast blocks can spread (corruption will be quick).

Localizer Package
5 years ago tModLoader v0.11.4 Edit | Delete
The Exhile Mod
Download v0.36 (7.6 KB)

Clondrah

This mod will add a variety of weapons. Most of them will be quite overpowered so, use them wisely. This is my first mod so the sprite might be bad.

Currently Adds
Delete Sword (1 Dirt @ a Workbench) Recipe will change.
The Infernal Demon (10 Souls of Night and 20 Hellstone Bar @ a Workbench) Recipe will change.
Wooden Blade (10 Wood @ a Workbench)

Version History

0.36 Added Wooden Blade, Update recipes, Tweaked Sprites
0.35 Added Mod icon
0.34 Cahnged The Infernal Demon Sprite
0.33 Changed Delete Sword Sprite & Added The Infernal Demon
0.31 Update Delete Sword Sprite

Localizer Package
7 years ago tModLoader v0.10.1 Edit | Delete
QuickStackPlus
Download v0.7 (47.3 KB)

tyw

QuickStackPlus for tModLoader ver 0.6
About:

Extend "Quick stack to nearby chest" using Chest name.
Restock items using RestockRuleChest or RestockRuileFile.
NOT TESTED IN MULTIPLAYER.

Chest name prefixes:

%<ANY> : Autosplit stack if reach Item#maxStack
!<ANY> : Ignore chest
/<REGEX> : Regex match(particial, case-sensitive)
=<FILENAMEBASE>: Use PatternFile
?<FIELD_NAME>[<OP><RHS>] : Item#FIELD_NAME match. bool and interger field only.
@<CHAR_NAME> : RestockRuleChest using Item#maxStack
#<CHAR_NAME> : RestockRuleChest using size of stacks in chest.

KeyAssign:

QuickStackPlus(T):execute
LoadRuleFile(Y):as is
UniteInventory(U):unite divided stacks to one.

RestockRuleFile:

File path : <MyGames>/Terraria/ModLoader/Players/<CHAR_NAME>_rule.txt
syntax(regex): " *([0-9]+) +(.+)"
example:
[CODE]
#comment out
100 Dirt Block
90 Torch
[/CODE]
Item name is Case and Space sensitive.

PatternFile:

File path : <MyGames>/Terraria/ModLoader/Players/<FILENAMEBASE>.txt
Can use prefix: /, ?, !
example:
[CODE]
Yellow Marigold
/.* Dye$
#Store all items of Item#ranged==true without gel and coins
!Gel
!/Coin$
?ranged
#armor(not vanity)
!?vanity
?headSlot != -1
?bodySlot != -1
?legSlot != -1
[/CODE]

Filed name example:

Refer Terraria source(Item.cs) for all fields.
boolean : melee, ranged, magic, summon, thrown, vanity, mech, accessory, consumable, material
int(defalut value=0) : pick, axe, hammer, damage, defence, headSlot(-1), bodySlot(-1), legSlot(-1), ammo, useAmmo, mountType(-1)
Filed operand and RightHandSide value:

OP: ==, !=, <, >, <=, >=
RHS: interger

History:
ver 0.7
Add icon.

ver 0.6 2018.12/31

Remov

Localizer Package
6 years ago tModLoader v0.10.1.5 Edit | Delete
Xeryph Insanity
Download v0.1 (30.5 KB)

Xeryph

Xeryph Insanity is a pretty cool mod, it does...this. Modify this file with a description of your mod.

Localizer Package
7 years ago tModLoader v0.10.1.1 Edit | Delete
A b s o l u t e
Download v0.1 (97.9 KB)

absolute

A b s o l u t e is a pretty cool mod, it does...this. Modify this file with a description of your mod.

Localizer Package
6 years ago tModLoader v0.10.1.5 Edit | Delete
PAYBACK
Download v0.1 (4.3 KB)

TheSavageGoldenBeetle

PAYBACK is a pretty cool mod, it does...this. Modify this file with a description of your mod.

Localizer Package
7 years ago tModLoader v0.10.1 Edit | Delete
hellsing guns
Download v0.5.8.1 (55.4 KB)

khamys

hellsing guns THE MOD

adds equipments,weapons from the anime of the mod (is not complete yet, still in developement)

it contains:

[9 weapons]
- 8 ranged

- 1 throwing

[1 Mount]

[1 Acessory]

(the acessory is working fine but still without the rest of the abilites some are working is
still helpfull, regeneration, potion time reduced and tabi dash]

[1 type of ammo]

- 1 vanity

Localizer Package
5 years ago tModLoader v0.11.7.5 Edit | Delete
ModA
Download v0.1 (10 KB)

FireHazard01

ModA is a pretty cool mod, it does...this. Modify this file with a description of your mod.

Localizer Package
7 years ago tModLoader v0.10.1 Edit | Delete
Nipple Sword Mod
Download v0.1 (3 KB)

MrStarmose

Nipple Sword Mod is a pretty cool mod, it adds a Nipple sword to your world. And that is it!

Localizer Package
7 years ago tModLoader v0.10.1.5 Edit | Delete
Refined Mod
Download v0.1 (4.6 KB)

titedog

---REFINED MOD:---
This mod adds tons of new items, mobs, ores, and more!
New Updates come out soon, so remember to update and
check if Refined mod has any updates!
Enjoy!
------------------

Localizer Package
7 years ago tModLoader v0.10.1.1 Edit | Delete
RC3432's Random Traits

https://i.imgur.com/U686Ice.png
Download v1.1 (20.8 KB)

RC3432

RC3432's Random Traits adds random feats and flaws to spice up your character.
Choosen by random upon creation or death of a medium core player, the intention is to make every player as unique as possible while not going too far to the overpowered or weak side.
It comes with a configuration to choose the amount of feats or flaws you want.
The best option for a regular playthrough is 2 Feats and 1 Flaw
(This mod is still experimental. Bugs are still a posibility)

!!! Make sure you customize the config before starting a new character !!!

The following (Current) Feats are listed here:

- Athletic: Improves your characters strength, which allows you to do athletic feats such as swimming or climbing.
- Acrobatic: Massively increases your mobility and allows you to do dashes and double jumps.
- Fisherman: Increased fishing power and ability to see what you caught.
- Hardy: +4 defense and life regeneration.
- Intellegent: Being one of great intellegence, magic and important information comes to you easily.
- Stealthy: Allows you to avoid enemies and other players are more likely to be targeted than you are.
- Persuasive: All items you buy from NPCs cost 20% less.
- Perceptive: Improves vision and eyesight, allowing you to better see in the dark and become immune to darkness and blackout. It also allows you to see much further.

The following (Current) Flaws are listed here:

- Clumsy: Reduces your mobility by 20% (Immune if you have the Acrobatic Trait)
- Impaired Vision: Reduces your visibility and makes you immune to sight potions. (Immune if you have the Perceptive Trait)
- Deaf: Turns off all sounds in the world (Can be turned off in config if found annoying)
- Feeble: Weakens your melee effectiveness and increases damage taken. (Immune if you have the Athletic Trait)
- Aggressive: Reduces all defense by 4 and slightly increases all damage. (Immune if you currently have the Calming buff)


Changelog:
0.1 Offical Release
0.2 Git add
0.5 Added fisherman feat, debating a new form to get traits.
0.6 Added ability to turn off feats or flaws inside the config / Added hardy feat
0.8 Reworked agressive to rather than deal extra damage increase knockback
1.0 Added a perceptive binocular toggle
1.1 Reworked the counting function for determining amount of flaws and traits

Localizer Package
4 years ago tModLoader v0.11.8.3 Edit | Delete
A Bunch of Swords
Download v0.1 (9.2 KB)

KadenzaTheDragon

A Bunch of Swords does exactly what it says it'll do. It adds in a bunch of (often useless) swords.

Note: I know next to nothing about coding, so it might be a bit buggy.

Localizer Package
6 years ago tModLoader v0.10.1.5 Edit | Delete
Sword
Download v0.1 (2.3 KB)

myname

Sword is a pretty cool mod, it does...this. Modify this file with a description of your mod.

Localizer Package
6 years ago tModLoader v0.10.1.5 Edit | Delete
Teleportic Items

https://i.imgur.com/74GvryU.png
Download v0.3 (88.2 KB)

Neko the cat'nt


this mod add a things that allows you to teleport freely (and also a config)

one of them is :

- Telegraph Potion
a Hardmode potion that allows you to teleport around the discovered map, you can obtain the potion from slaying enemy in hallow biome or by crafting it

- Telepylon Potion
a potion that allows you to teleport near town npc, sold by dryad

- Teledrone
a (very) cool drone that allows you to teleport to it

- Rod Of Telegraph
function the same as telegraph potion but its unconsumable and have more delay


credit to jopojelly for heros mod code that i stole

changelog :

v.0.3
- added rod of telegraph
- added telepylon potion
- added teledrone
- increased the max telegraph delay config to 120 second
- increased the default telegraph delay to 30 second
- fixed bug

v.0.2
- added icon
- added sprite
- tweak some code

v.0.1
- initial release

Localizer Package
3 years ago tModLoader v0.11.8.5 Edit | Delete
<<-- | <- | -> | -->>