XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet

DeathMod

【Terraria】DeathMod (now aka Soul Harvest)

公开
关注 0 Fork 0 Star 0
返回提交历史

XFEstudio/DeathMod

调整镰刀形态进阶与死亡合成费用

8a44aaa
XFE工作室室长 <mail@xfegzs.com>
提交于

代码差异

6 个文件 +33 -25
Modified Items/LegacyDeath.cs +1 -1
@@ -42,7 +42,7 @@ public class LegacyDeath : ModItem
42 42 {
43 43 CreateRecipe()
44 44 .AddIngredient<DeathSickle>()
45 .AddIngredient<Soul>(99)
45 .AddIngredient<Soul>(999)
46 46 .AddTile(ModContent.TileType<DeathAltarTile>())
47 47 .Register();
48 48 }
Modified Items/NormalSickle.cs +10 -2
@@ -649,8 +649,16 @@ public class NormalSickle : ModItem, IDeathAltarUpgradeable
649 649
650 650 private int GetAdvancementEssenceCost()
651 651 {
652 // Form 2 remains the inexpensive introduction. Advancing into forms 3-5 costs twice as much as before.
653 return SickleTier == 0 ? 1 : 1 << (SickleTier + 1);
652 // The price is based on the target form: form 2 is the introduction, while
653 // forms 3-5 become deliberate long-term milestones.
654 return SickleTier switch
655 {
656 0 => 1,
657 1 => 16,
658 2 => 32,
659 3 => 99,
660 _ => 999
661 };
654 662 }
655 663
656 664 private void SpawnLegacyProjectiles(IEntitySource source, Vector2 position, Vector2 velocity, int type, int damage, float knockback, int owner)
Modified README.md +2 -2
@@ -39,7 +39,7 @@ Use the first extracted essence to establish the progression system:
39 39 | Death Robe | 20 Silk + 1 Soul Essence | Death Altar |
40 40 | Wings of Death | 20 Souls of Flight + 1 Soul Essence | Death Altar |
41 41 | Death Necklace | Panic Necklace + Obsidian Rose + 3 Soul Essence | Death Altar |
42 | Death (legacy relic) | Death Sickle + 99 Soul Essence | Death Altar |
42 | Death (legacy relic) | Death Sickle + 999 Soul Essence | Death Altar |
43 43
44 44 Place and right-click the Death Altar. Its left column lists every compatible item in your inventory or equipment slots; select an icon, then light nodes on its skill tree. You do not need to hold the selected item. Upgrade requests are checked on the server and the player must remain within roughly 12 tiles.
45 45
@@ -57,7 +57,7 @@ The Harvest Sickle begins at 1 base damage. Damage growth is reduced by roughly
57 57
58 58 ### Mid game — choose a branch and specialize
59 59
60 The first advancement costs 1 Soul Essence and branches into Bone Wraith or Blood Covenant. Later steps cost 4, 8, and 16 essence, so a complete route costs 29 essence.
60 The first advancement costs 1 Soul Essence and branches into Bone Wraith or Blood Covenant. Advancing into forms 3, 4, and 5 costs 16, 32, and 99 essence respectively, so a complete route costs 148 essence.
61 61
62 62 ```text
63 63 Harvest Sickle
Modified README.zh-Hans.md +2 -2
@@ -36,7 +36,7 @@ Soul Harvest(内部模组名 `DeathMod`)是一款围绕死神镰刀、人物
36 36 | 死神长袍 | 20 丝绸 + 1 灵魂精华 | 死神祭坛 |
37 37 | 死亡之翼 | 20 飞翔之魂 + 1 灵魂精华 | 死神祭坛 |
38 38 | 死亡项链 | 恐慌项链 + 黑曜石玫瑰 + 3 灵魂精华 | 死神祭坛 |
39 | 死亡(旧版遗物) | 死神镰刀 + 99 灵魂精华 | 死神祭坛 |
39 | 死亡(旧版遗物) | 死神镰刀 + 999 灵魂精华 | 死神祭坛 |
40 40
41 41 放置并右键祭坛后,左侧会列出背包和装备栏中的所有可改造物品;点击图标切换目标,再点亮右侧技能树。无需手持目标物品。升级时人物需位于祭坛约 12 格范围内。
42 42
@@ -53,7 +53,7 @@ Soul Harvest(内部模组名 `DeathMod`)是一款围绕死神镰刀、人物
53 53
54 54 ### 中期:选择镰刀路线
55 55
56 进阶费用依次为 `1、4、8、16` 个灵魂精华,完整路线共 29 精华。亡骨与虚空的右键是原地释放技能,不会强制突进;收魂与炼狱则是真正的 20 格以上长距离突进。
56 进阶费用依次为 `1、16、32、99` 个灵魂精华,完整路线共 148 精华。亡骨与虚空的右键是原地释放技能,不会强制突进;收魂与炼狱则是真正的 20 格以上长距离突进。
57 57
58 58 | 形态 | 主要特色 | 右键 | 冷却 |
59 59 | --- | --- | --- | ---: |
Modified docs/PLAY_GUIDE.md +9 -9
@@ -61,14 +61,14 @@ Advancement changes projectile behavior, slash style, effects, and right-click s
61 61 | Current form | Primary branch | Alternate branch | Cost |
62 62 | --- | --- | --- | ---: |
63 63 | Harvest | Bone Wraith | Blood Covenant | 1 essence |
64 | Bone Wraith | Infernal | Frost Soul | 4 essence |
65 | Blood Covenant | Frost Soul | Infernal | 4 essence |
66 | Infernal | Soul | Void | 8 essence |
67 | Frost Soul | Void | Soul | 8 essence |
68 | Soul | Death Sickle | — | 16 essence |
69 | Void | Death Sickle | — | 16 essence |
64 | Bone Wraith | Infernal | Frost Soul | 16 essence |
65 | Blood Covenant | Frost Soul | Infernal | 16 essence |
66 | Infernal | Soul | Void | 32 essence |
67 | Frost Soul | Void | Soul | 32 essence |
68 | Soul | Death Sickle | — | 99 essence |
69 | Void | Death Sickle | — | 99 essence |
70 70
71 Every complete route costs 29 Soul Essence. The final red Death Sickle keeps its established texture and final-form behavior; the preceding forms use the new slash and projectile systems.
71 Every complete route costs 148 Soul Essence. The final red Death Sickle keeps its established texture and final-form behavior; the preceding forms use the new slash and projectile systems. The optional legacy relic Death is crafted afterward for another 999 Soul Essence.
72 72
73 73 ## 5. Left-click and right-click combat
74 74
@@ -214,11 +214,11 @@ Max all four branches to unlock **Deathly Sovereignty** for 30 Soul Essence. It
214 214
215 215 ### Late game
216 216
217 1. Finish the 15-essence route to Death Sickle.
217 1. Finish the 148-essence route to Death Sickle.
218 218 2. Raise Fated cap and per-hit application together so stacks are reachable in practical combat.
219 219 3. Complete damage, projectile, penetration, hit-cooldown, and life-steal branches to match your build.
220 220 4. Train Wings of Death after Hardmode and buy robe immunities for the encounters you actually face before completing all 15.
221 5. Treat the 99-essence legacy Death recipe as an optional post-progression relic.
221 5. Treat the 999-essence legacy Death recipe as an optional post-progression relic.
222 222
223 223 ## 11. Multiplayer and troubleshooting
224 224
Modified docs/PLAY_GUIDE.zh-Hans.md +9 -9
@@ -61,14 +61,14 @@ Boss 不会直接掉落灵魂精华;请通过灵魂罐将奖励凝聚为精华
61 61 | 当前形态 | 主路线 | 分支路线 | 费用 |
62 62 | --- | --- | --- | ---: |
63 63 | 收魂镰 | 亡骨镰 | 血契镰 | 1 精华 |
64 | 亡骨镰 | 炼狱镰 | 霜魂镰 | 4 精华 |
65 | 血契镰 | 霜魂镰 | 炼狱镰 | 4 精华 |
66 | 炼狱镰 | 灵魂镰刀 | 虚空镰刀 | 8 精华 |
67 | 霜魂镰 | 虚空镰刀 | 灵魂镰刀 | 8 精华 |
68 | 灵魂镰刀 | 死神镰刀 | — | 16 精华 |
69 | 虚空镰刀 | 死神镰刀 | — | 16 精华 |
64 | 亡骨镰 | 炼狱镰 | 霜魂镰 | 16 精华 |
65 | 血契镰 | 霜魂镰 | 炼狱镰 | 16 精华 |
66 | 炼狱镰 | 灵魂镰刀 | 虚空镰刀 | 32 精华 |
67 | 霜魂镰 | 虚空镰刀 | 灵魂镰刀 | 32 精华 |
68 | 灵魂镰刀 | 死神镰刀 | — | 99 精华 |
69 | 虚空镰刀 | 死神镰刀 | — | 99 精华 |
70 70
71 任意完整路线都需要 29 个灵魂精华。最终红色死神镰刀保留既有最终形态贴图与行为;之前的形态使用新的斩击和投射物系统。
71 任意完整路线都需要 148 个灵魂精华。最终红色死神镰刀保留既有最终形态贴图与行为;之前的形态使用新的斩击和投射物系统。之后制作可选的旧版遗物“死亡”还需要 999 个灵魂精华。
72 72
73 73 ## 五、左右键战斗
74 74
@@ -214,11 +214,11 @@ Boss 不会直接掉落灵魂精华;请通过灵魂罐将奖励凝聚为精华
214 214
215 215 ### 后期
216 216
217 1. 用总计 15 精华完成路线,获得死神镰刀。
217 1. 用总计 148 精华完成路线,获得死神镰刀。
218 218 2. 同步培养命定上限与单次叠层,确保实战能够达到上限。
219 219 3. 根据流派补满攻击、弹幕、穿甲、伤害间隔与吸血。
220 220 4. 困难模式培养死亡之翼,并优先购买当前 Boss 所需的长袍减益免疫。
221 5. 99 精华的旧版“死亡”应视作可选的流程后收藏遗物。
221 5. 999 精华的旧版“死亡”应视作可选的流程后收藏遗物。
222 222
223 223 ## 十一、多人和常见问题
224 224