mirror of
https://github.com/tribufu/ServerManagers
synced 2026-05-06 15:17:34 +00:00
Added new player levels
This commit is contained in:
parent
9d23b2a725
commit
11465f9850
2 changed files with 128 additions and 10 deletions
|
|
@ -12913,9 +12913,109 @@
|
|||
{
|
||||
"XPRequired": 354747104,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 380747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 407747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 435747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 464747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 494747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 525747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 557747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 590747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 624747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 659747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 695747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 732747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 770747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 809747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 849747100,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 892234400,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 934721900,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 977209200,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 1019697000,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 1104671000,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 1189646000,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 1274621000,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 1359595000,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 1444570000,
|
||||
"EngramPoints": 1
|
||||
},
|
||||
{
|
||||
"XPRequired": 1529545000,
|
||||
"EngramPoints": 1
|
||||
}
|
||||
],
|
||||
"PlayerAdditionalLevels": "50",
|
||||
"PlayerAdditionalLevels": "75",
|
||||
"CreatureLevels": [
|
||||
{
|
||||
"XPRequired": 10
|
||||
|
|
|
|||
|
|
@ -4660,22 +4660,34 @@
|
|||
</DataTemplate>
|
||||
</GridViewColumn.CellTemplate>
|
||||
</GridViewColumn>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionLevelColumnLabel}" Width="50" DisplayMemberBinding="{Binding LevelIndex, Converter={StaticResource PlayerLevelIndexToDisplayLevelConverter}}"/>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionXPRequiredColumnLabel}" Width="100">
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionLevelColumnLabel}" Width="Auto">
|
||||
<GridViewColumn.CellTemplate>
|
||||
<DataTemplate>
|
||||
<TextBox Text="{Binding XPRequired}" Width="75" VerticalContentAlignment="Center" LostFocus="PlayerLevels_Recalculate"/>
|
||||
<Label Content="{Binding LevelIndex, Converter={StaticResource PlayerLevelIndexToDisplayLevelConverter}}" MinWidth="50" Width="Auto" VerticalContentAlignment="Center" HorizontalContentAlignment="Right"/>
|
||||
</DataTemplate>
|
||||
</GridViewColumn.CellTemplate>
|
||||
</GridViewColumn>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionEngramPointsColumnLabel}" Width="100">
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionXPRequiredColumnLabel}" Width="Auto">
|
||||
<GridViewColumn.CellTemplate>
|
||||
<DataTemplate>
|
||||
<TextBox Text="{Binding EngramPoints}" Width="75" VerticalContentAlignment="Center" LostFocus="PlayerLevels_Recalculate"/>
|
||||
<TextBox Text="{Binding XPRequired}" MinWidth="120" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" LostFocus="PlayerLevels_Recalculate"/>
|
||||
</DataTemplate>
|
||||
</GridViewColumn.CellTemplate>
|
||||
</GridViewColumn>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionEngramPointsColumnLabel}" Width="Auto">
|
||||
<GridViewColumn.CellTemplate>
|
||||
<DataTemplate>
|
||||
<TextBox Text="{Binding EngramPoints}" MinWidth="120" Width="Auto" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" LostFocus="PlayerLevels_Recalculate"/>
|
||||
</DataTemplate>
|
||||
</GridViewColumn.CellTemplate>
|
||||
</GridViewColumn>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionEngramTotalColumnLabel}" Width="Auto">
|
||||
<GridViewColumn.CellTemplate>
|
||||
<DataTemplate>
|
||||
<Label Content="{Binding EngramTotal}" MinWidth="120" Width="Auto" VerticalContentAlignment="Center" HorizontalContentAlignment="Right"/>
|
||||
</DataTemplate>
|
||||
</GridViewColumn.CellTemplate>
|
||||
</GridViewColumn>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionEngramTotalColumnLabel}" Width="100" DisplayMemberBinding="{Binding EngramTotal}"/>
|
||||
</GridView>
|
||||
</ListView.View>
|
||||
|
||||
|
|
@ -4737,11 +4749,17 @@
|
|||
</DataTemplate>
|
||||
</GridViewColumn.CellTemplate>
|
||||
</GridViewColumn>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionLevelColumnLabel}" Width="50" DisplayMemberBinding="{Binding LevelIndex, Converter={StaticResource DinoLevelIndexToDisplayLevelConverter}}"/>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionXPRequiredColumnLabel}" Width="100">
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionLevelColumnLabel}" Width="Auto">
|
||||
<GridViewColumn.CellTemplate>
|
||||
<DataTemplate>
|
||||
<TextBox Text="{Binding XPRequired}" Width="75" VerticalContentAlignment="Center" LostFocus="DinoLevels_Recalculate"/>
|
||||
<Label Content="{Binding LevelIndex, Converter={StaticResource DinoLevelIndexToDisplayLevelConverter}}" MinWidth="50" Width="Auto" VerticalContentAlignment="Center" HorizontalContentAlignment="Right"/>
|
||||
</DataTemplate>
|
||||
</GridViewColumn.CellTemplate>
|
||||
</GridViewColumn>
|
||||
<GridViewColumn Header="{DynamicResource ServerSettings_ProgressionXPRequiredColumnLabel}" Width="Auto">
|
||||
<GridViewColumn.CellTemplate>
|
||||
<DataTemplate>
|
||||
<TextBox Text="{Binding XPRequired}" MinWidth="120" VerticalContentAlignment="Center" HorizontalContentAlignment="Right" LostFocus="DinoLevels_Recalculate"/>
|
||||
</DataTemplate>
|
||||
</GridViewColumn.CellTemplate>
|
||||
</GridViewColumn>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue