Skip to content

Commit a10c459

Browse files
committed
Faridun Spearwoman
1 parent 04467bc commit a10c459

File tree

4 files changed

+109
-0
lines changed

4 files changed

+109
-0
lines changed

src/Data/Skills/minion.lua

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1334,6 +1334,66 @@ skills["GAMediumBeetleSunder"] = {
13341334
},
13351335
}
13361336
}
1337+
skills["GAMutewindWomanSpearStab1"] = {
1338+
name = "Spear Stab",
1339+
hidden = true,
1340+
skillTypes = { [SkillType.Triggerable] = true, [SkillType.Attack] = true, },
1341+
castTime = 1,
1342+
qualityStats = {
1343+
},
1344+
levels = {
1345+
[1] = { baseMultiplier = 0.5, levelRequirement = 0, },
1346+
},
1347+
statSets = {
1348+
[1] = {
1349+
label = "Spear Stab",
1350+
incrementalEffectiveness = 0.054999999701977,
1351+
statDescriptionScope = "skill_stat_descriptions",
1352+
baseFlags = {
1353+
triggerable = true,
1354+
attack = true,
1355+
},
1356+
stats = {
1357+
"is_area_damage",
1358+
},
1359+
levels = {
1360+
[1] = { actorLevel = 1, },
1361+
},
1362+
},
1363+
}
1364+
}
1365+
skills["MutewindBanditWomanLeap"] = {
1366+
name = "Leap Slam",
1367+
hidden = true,
1368+
skillTypes = { [SkillType.Triggerable] = true, [SkillType.Attack] = true, },
1369+
castTime = 1,
1370+
qualityStats = {
1371+
},
1372+
levels = {
1373+
[1] = { levelRequirement = 0, },
1374+
},
1375+
statSets = {
1376+
[1] = {
1377+
label = "Leap Slam",
1378+
incrementalEffectiveness = 0.054999999701977,
1379+
statDescriptionScope = "skill_stat_descriptions",
1380+
baseFlags = {
1381+
triggerable = true,
1382+
attack = true,
1383+
cooldown = true,
1384+
},
1385+
baseMods = {
1386+
skill("cooldown", 10),
1387+
},
1388+
stats = {
1389+
"is_area_damage",
1390+
},
1391+
levels = {
1392+
[1] = { actorLevel = 1, },
1393+
},
1394+
},
1395+
}
1396+
}
13371397
skills["GATwoHeadedTitanSlam"] = {
13381398
name = "Slam",
13391399
hidden = true,

src/Data/Spectres.lua

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,39 @@ minions["Metadata/Monsters/BoneCultists/BoneCultists_Beast/BoneCultistBeast"] =
145145
},
146146
}
147147

148+
-- Faridun
149+
minions["Metadata/Monsters/Mutewind/MutewindWomanSpearSandCrusted"] = {
150+
name = "Faridun Spearwoman",
151+
monsterTags = { "fast_movement", "human", "humanoid", "melee", "not_int", "not_str", "physical_affinity", "red_blood", "SpearMetal_onhit_audio", },
152+
life = 1.1,
153+
baseDamageIgnoresAttackSpeed = true,
154+
evasion = 0.8,
155+
fireResist = 0,
156+
coldResist = 0,
157+
lightningResist = 0,
158+
chaosResist = 0,
159+
damage = 1.1,
160+
damageSpread = 0.2,
161+
attackTime = 1.5,
162+
attackRange = 21,
163+
accuracy = 1,
164+
experienceMultiplier = 1.1,
165+
skillList = {
166+
"MeleeAtAnimationSpeedComboTEMP",
167+
"EmptyActionMutewindBanditLeap",
168+
"MutewindBanditWomanLeap",
169+
"EmptyActionMutewindBanditCombo",
170+
"MutewindBanditWomanCombo1",
171+
"MutewindBanditWomanCombo2",
172+
"MutewindBanditWomanCombo3",
173+
"WalkEmergeMutewind",
174+
"GAMutewindWomanSpearStab1",
175+
"GAMutewindWomanSpearStab2",
176+
},
177+
modList = {
178+
},
179+
}
180+
148181
-- Filthy First-born
149182
minions["Metadata/Monsters/Cenobite/CenobiteBloater/CenobiteBloater"] = {
150183
name = "Filthy First-born",

src/Export/Minions/Spectres.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ local minions, mod, flag = ...
1818
-- Dinosaur
1919
#spectre Metadata/Monsters/BoneCultists/BoneCultists_Beast/BoneCultistBeast
2020

21+
-- Faridun
22+
#spectre Metadata/Monsters/Mutewind/MutewindWomanSpearSandCrusted
23+
2124
-- Filthy First-born
2225
#spectre Metadata/Monsters/Cenobite/CenobiteBloater/CenobiteBloater
2326

src/Export/Skills/minion.txt

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,19 @@ skills["MinionInstability"] = {
235235
#mods
236236
#skillEnd
237237

238+
#skill GAMutewindWomanSpearStab1 Spear Stab
239+
#set GAMutewindWomanSpearStab1
240+
#flags triggerable attack
241+
#mods
242+
#skillEnd
243+
244+
#skill MutewindBanditWomanLeap Leap Slam
245+
#set MutewindBanditWomanLeap
246+
#flags triggerable attack cooldown
247+
#baseMod skill("cooldown", 10)
248+
#mods
249+
#skillEnd
250+
238251
#skill GATwoHeadedTitanSlam Slam
239252
#set GATwoHeadedTitanSlam
240253
#flags triggerable attack

0 commit comments

Comments
 (0)