Andrew James
|
1412e25eff
|
Allow for item drop rates up to 255 (#7533)
|
1 year ago |
Gleb Mazovetskiy
|
382dbd988e
|
Run tools/update_bundled_assets.sh
|
1 year ago |
Eric Robinson
|
36af39da53
|
Fix Flamedart damage (#7076)
|
2 years ago |
Anders Jenbo
|
e949f41d83
|
Clean up selection type
|
2 years ago |
Eric Robinson
|
520bf5d9bd
|
Fix visually overlapping sprites for wall spells (#7208)
|
2 years ago |
Gleb Mazovetskiy
|
7d5bef724d
|
Check DevilutionX version
This is similar to how we handle extra fonts
|
2 years ago |
Gleb Mazovetskiy
|
bb6787ccf7
|
Rename `MissileData` fields to match the TSV
|
2 years ago |
Gleb Mazovetskiy
|
91306d8c22
|
Migrate misdat.cpp data to TSV
|
2 years ago |
Gleb Mazovetskiy
|
90732aa7be
|
Migrate objdat.cpp data to TSV
|
2 years ago |
Gleb Mazovetskiy
|
e7c58ad0ef
|
Remove missing SfxID
Follow-up to #7310
Also removes 1 more unused sound
|
2 years ago |
Gleb Mazovetskiy
|
80ee326911
|
Remove unused sounds
Done with the following script:
```ruby
tsv = File.read('assets/txtdata/sound/effects.tsv')
all = tsv.lines[1...].map {|l| l.split("\t")[0]}
used = Dir['Source/**/*.{cpp,c,h,hpp}'].flat_map do |path|
File.read(path).scan(/SfxID::[A-Za-z0-9]+/).map {|s| s.split('::')[1]}
end
used.concat(%w[
Warrior69b
Sorceror69b
Rogue69b
Monk69b
Swing2
SpellAcid1
OperateShrine1
Warrior14b
Warrior14c
Warrior15b
Warrior15c
Warrior16b
Warrior16c
Warrior2b
Warrior2c
Rogue14b
Rogue14c
Sorceror14b
Sorceror14c
Monk14b
Monk14c
])
used.sort!
used.uniq!
unused = all - used
unused.sort!
File.open('assets/txtdata/sound/effects.tsv', 'w') do |f|
f.write(tsv.lines[0])
tsv.lines[1...].each do |line|
fields = line.split("\t")
if unused.include?(fields[0])
puts fields[2].tr('\\', '/')
else
f.write(line)
end
end
end
```
|
2 years ago |
Gleb Mazovetskiy
|
497e6dfe40
|
Add a dot to lowercase "i" in Turkish (all sizes)
https://github.com/diasurgical/devilutionX/pull/7189 added the dot to size 12,
this PR does so for the rest of the font sizes.
|
2 years ago |
Gleb Mazovetskiy
|
8108f23d58
|
Add Turkish-specific graphics for "i"
|
2 years ago |
staphen
|
60113bb0b8
|
Fix brightness of whu casting animations
|
2 years ago |
Eric Robinson
|
5ee75b1fc7
|
Fix Hammer of Jholm (#7069)
|
2 years ago |
Eric Robinson
|
f67fbfeaca
|
Conditionally set cursor graphic for unique items (#7067)
|
2 years ago |
KPhoenix
|
36aca86bd8
|
fix stormshield
|
2 years ago |
KPhoenix
|
66ec4de7e4
|
Fix outdated item values
|
2 years ago |
KPhoenix
|
039a6c91bc
|
Remove obsolete values from unique item data
|
2 years ago |
Eric Robinson
|
ebe353f105
|
Revise how unique cursor graphic is obtained (#7066)
|
2 years ago |
Gleb Mazovetskiy
|
dc59cdaee4
|
Extract objcurs widths into a file
Read from the widths file when using the original CEL.
When using CLX, use width in CLX.
|
2 years ago |
Gleb Mazovetskiy
|
124d113b57
|
Extract spell data to a TSV
|
2 years ago |
Gleb Mazovetskiy
|
17f95a04da
|
Migrate missile sprite data to txtdata
|
2 years ago |
Gleb Mazovetskiy
|
b2fa87130f
|
Packaging/resources/assets -> assets
|
2 years ago |