Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tales of MajEyal
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Otowa Kotori
Tales of MajEyal
Commits
4dfd7a89
Commit
4dfd7a89
authored
10 years ago
by
Alex Ksandra
Browse files
Options
Downloads
Patches
Plain Diff
fix
parent
70f97e59
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
game/modules/tome/data/talents/cursed/cursed-aura.lua
+6
-5
6 additions, 5 deletions
game/modules/tome/data/talents/cursed/cursed-aura.lua
with
6 additions
and
5 deletions
game/modules/tome/data/talents/cursed/cursed-aura.lua
+
6
−
5
View file @
4dfd7a89
...
...
@@ -519,11 +519,12 @@ newTalent{
local
level
=
o
.
material_level
or
1
-- Trying to replicate the ego pattern on the weapon. Kinky.
local
egos
=
o
.
egos_number
or
(
o
.
ego_list
and
#
o
.
ego_list
)
or
(
e
.
egoed
and
1
)
or
0
local
double_greater
=
(
o
.
unique
and
egos
==
0
)
or
o
.
greater_ego
>
1
-- artifact or purple
local
greater_normal
=
(
o
.
unique
and
egos
>
2
)
or
o
.
greater_ego
==
1
and
egos
>
1
-- randart or blue
local
greater
=
(
o
.
unique
and
egos
>
0
)
or
o
.
greater_ego
==
1
and
egos
==
1
-- rare or blue
local
double_ego
=
not
o
.
unique
and
not
o
.
greater_ego
and
egos
>
1
local
ego
=
not
o
.
unique
and
not
o
.
greater_ego
and
egos
==
1
local
greater
=
o
.
greater_ego
or
0
local
double_greater
=
(
o
.
unique
and
egos
==
0
)
or
greater
>
1
-- artifact or purple
local
greater_normal
=
(
o
.
unique
and
egos
>
2
)
or
greater
==
1
and
egos
>
1
-- randart or blue
local
greater
=
(
o
.
unique
and
egos
>
0
)
or
greater
==
1
and
egos
==
1
-- rare or blue
local
double_ego
=
not
o
.
unique
and
greater
==
0
and
egos
>
1
local
ego
=
not
o
.
unique
and
greater
==
0
and
egos
==
1
local
filter
=
{
type
=
"ammo"
,
ignore_material_restriction
=
true
,
tome
=
{
double_greater
=
double_greater
and
1
,
greater_normal
=
greater_normal
and
1
,
greater
=
greater
and
1
,
double_ego
=
double_ego
and
1
,
ego
=
ego
and
1
},
special
=
function
(
e
)
return
not
e
.
unique
and
e
.
material_level
==
level
end
}
if
o
.
archery
==
"bow"
then
filter
.
subtype
=
"arrow"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment