Compare commits

..

8 Commits

Author SHA1 Message Date
9095839006 Update version to v1.2.0
Add Quest Tab Page
2022-05-14 21:30:54 +08:00
d3fe3d7c76 Updated En translation and En resource files (#20) 2022-05-14 17:46:01 +08:00
6ccd828044 Add Tp to SceneTab
Update version to 1.1.0
2022-05-14 09:21:18 +08:00
52b93619da Add LICENSE to all code file head
Update version to 1.0.2
2022-05-14 00:07:28 +08:00
cb69bf8502 Merge pull request #26 from renkin-atorie/i18n
[en] Update Animal.txt
2022-05-13 23:05:53 +08:00
arub3do
4a7d19af00 Update readme.md 2022-05-13 22:58:41 +08:00
f46e63b189 Fix drop command bug (#25)
Update coop command
Add /killall to CustomCommands
2022-05-13 22:55:23 +08:00
arub3do
d9e420b226 [en] Update Animal.txt
sort by `Id`
2022-05-13 22:53:03 +08:00
36 changed files with 18945 additions and 19696 deletions

View File

@@ -16,8 +16,8 @@
## TODO List ## TODO List
- [ ] 多语言支持进度UI已经支持英语但还有许多ID映射文件缺失欢迎补充 - [ ] 多语言支持进度UI已经支持英语但还有许多ID映射文件缺失欢迎补充
- [ ] Animal.txt - [x] Animal.txt
- [ ] Artifact.txt - [x] Artifact.txt
- [ ] ArtifactCat.txt - [ ] ArtifactCat.txt
- [ ] ArtifactMainAttribution.txt - [ ] ArtifactMainAttribution.txt
- [ ] ArtifactSubAttribution.txt - [ ] ArtifactSubAttribution.txt
@@ -25,12 +25,12 @@
- [x] CustomCommands.txt - [x] CustomCommands.txt
- [x] Item.txt - [x] Item.txt
- [x] Monster.txt - [x] Monster.txt
- [ ] NPC.txt - [x] NPC.txt
- [ ] Ornament.txt - [ ] Ornament.txt
- [x] Scene.txt - [x] Scene.txt
- [ ] Weapon.txt - [x] Weapon.txt
- [ ] Quest.txt
- [x] 远程执行命令 - [x] 远程执行命令
- [ ] 割草机启动器(无进度)
- [ ] 邮件编辑器(无进度) - [ ] 邮件编辑器(无进度)
- [ ] 商店编辑器(无进度) - [ ] 商店编辑器(无进度)

View File

@@ -16,8 +16,8 @@ The server require [gc-opencommand-plugin](https://github.com/jie65535/gc-openco
## TODO List ## TODO List
- [ ] Multi-language support (progress: UI already supports English, but there are still many ID mapping files missing, welcome to add) - [ ] Multi-language support (progress: UI already supports English, but there are still many ID mapping files missing, welcome to add)
- [ ] Animal.txt - [x] Animal.txt
- [ ] Artifact.txt - [x] Artifact.txt
- [ ] ArtifactCat.txt - [ ] ArtifactCat.txt
- [ ] ArtifactMainAttribution.txt - [ ] ArtifactMainAttribution.txt
- [ ] ArtifactSubAttribution.txt - [ ] ArtifactSubAttribution.txt
@@ -25,12 +25,12 @@ The server require [gc-opencommand-plugin](https://github.com/jie65535/gc-openco
- [x] CustomCommands.txt - [x] CustomCommands.txt
- [x] Item.txt - [x] Item.txt
- [x] Monster.txt - [x] Monster.txt
- [ ] NPC.txt - [x] NPC.txt
- [ ] Ornament.txt - [ ] Ornament.txt
- [x] Scene.txt - [x] Scene.txt
- [ ] Weapon.txt - [x] Weapon.txt
- [ ] Quest.txt
- [x] Execute command remotely - [x] Execute command remotely
- [ ] Grasscutter Launcher (no progress)
- [ ] Mail Editor (no progress) - [ ] Mail Editor (no progress)
- [ ] Shop Editor (no progress) - [ ] Shop Editor (no progress)

View File

@@ -1,4 +1,22 @@
using System.Threading.Tasks; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System.Threading.Tasks;
using GrasscutterTools.DispatchServer.Model; using GrasscutterTools.DispatchServer.Model;
using GrasscutterTools.Utils; using GrasscutterTools.Utils;

View File

@@ -1,4 +1,22 @@
using Newtonsoft.Json; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using Newtonsoft.Json;
namespace GrasscutterTools.DispatchServer.Model namespace GrasscutterTools.DispatchServer.Model
{ {

View File

@@ -1,4 +1,22 @@
using System; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Data; using System.Data;
using System.Linq; using System.Linq;

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,22 @@
using System; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Drawing; using System.Drawing;
using System.IO; using System.IO;
@@ -46,6 +64,7 @@ namespace GrasscutterTools
InitScenes(); InitScenes();
InitStatList(); InitStatList();
InitPermList(); InitPermList();
InitQuestList();
} }
private void FormMain_FormClosed(object sender, FormClosedEventArgs e) private void FormMain_FormClosed(object sender, FormClosedEventArgs e)
@@ -513,8 +532,16 @@ namespace GrasscutterTools
{ {
var id = name.Substring(0, name.IndexOf(':')).Trim(); var id = name.Substring(0, name.IndexOf(':')).Trim();
SetCommand(ChkDrop.Checked ? "/drop" : "/give", if (ChkDrop.Checked)
$"{id} {NUDGameItemAmout.Value} {NUDGameItemLevel.Value}"); {
NUDGameItemLevel.Enabled = false;
SetCommand("/drop", $"{id} {NUDGameItemAmout.Value}");
}
else
{
NUDGameItemLevel.Enabled = true;
SetCommand("/give", $"{id} {NUDGameItemAmout.Value} {NUDGameItemLevel.Value}");
}
return true; return true;
} }
return false; return false;
@@ -748,12 +775,15 @@ namespace GrasscutterTools
private void ListScenes_SelectedIndexChanged(object sender, EventArgs e) private void ListScenes_SelectedIndexChanged(object sender, EventArgs e)
{ {
if (ListScenes.SelectedIndex >= 0) if (ListScenes.SelectedIndex < 0)
{ {
ChkIncludeSceneId.Enabled = false;
return;
}
ChkIncludeSceneId.Enabled = true;
var id = GameData.Scenes.Ids[ListScenes.SelectedIndex]; var id = GameData.Scenes.Ids[ListScenes.SelectedIndex];
SetCommand("/changescene", id.ToString()); SetCommand("/changescene", id.ToString());
} }
}
private void CmbClimateType_SelectedIndexChanged(object sender, EventArgs e) private void CmbClimateType_SelectedIndexChanged(object sender, EventArgs e)
{ {
@@ -762,6 +792,14 @@ namespace GrasscutterTools
SetCommand("/weather", $"0 {CmbClimateType.SelectedIndex}"); SetCommand("/weather", $"0 {CmbClimateType.SelectedIndex}");
} }
private void BtnTeleport_Click(object sender, EventArgs e)
{
string args = $"{NUDTpX.Value} {NUDTpY.Value} {NUDTpZ.Value}";
if (ChkIncludeSceneId.Checked && ListScenes.SelectedIndex != -1)
args += $" {GameData.Scenes.Ids[ListScenes.SelectedIndex]}";
SetCommand("/tp", args);
}
#endregion - - #endregion - -
#region - - #region - -
@@ -1084,5 +1122,42 @@ namespace GrasscutterTools
} }
#endregion - - #endregion - -
#region - -
private void InitQuestList()
{
QuestFilterChanged(null, EventArgs.Empty);
}
private void QuestFilterChanged(object sender, EventArgs e)
{
ListQuest.BeginUpdate();
ListQuest.Items.Clear();
ListQuest.Items.AddRange(GameData.Quests.Lines.Where(l =>
{
if (!ChkQuestFilterHIDDEN.Checked && l.Contains((string)ChkQuestFilterHIDDEN.Tag))
return false;
if (!ChkQuestFilterUNRELEASED.Checked && l.Contains((string)ChkQuestFilterUNRELEASED.Tag))
return false;
if (!ChkQuestFilterTEST.Checked && l.Contains((string)ChkQuestFilterTEST.Tag))
return false;
if (!string.IsNullOrEmpty(TxtQuestFilter.Text))
return l.Contains(TxtQuestFilter.Text);
return true;
}).ToArray());
ListQuest.EndUpdate();
}
private void QuestButsClicked(object sender, EventArgs e)
{
if (ListQuest.SelectedIndex == -1)
return;
var item = ListQuest.SelectedItem as string;
var id = item.Substring(0, item.IndexOf(':')).Trim();
SetCommand("/quest", $"{(sender as Button).Tag} {id}");
}
#endregion - -
} }
} }

View File

@@ -280,12 +280,200 @@
<data name="LblMainAttribution.Text" xml:space="preserve"> <data name="LblMainAttribution.Text" xml:space="preserve">
<value>Main Stat</value> <value>Main Stat</value>
</data> </data>
<data name="TPQuest.Text" xml:space="preserve">
<value>Quest</value>
</data>
<data name="GrpQuestFilters.Text" xml:space="preserve">
<value>List Filter</value>
</data>
<data name="ChkQuestFilterTEST.Size" type="System.Drawing.Size, System.Drawing">
<value>51, 21</value>
</data>
<data name="ChkQuestFilterTEST.Text" xml:space="preserve">
<value>Test</value>
</data>
<data name="ChkQuestFilterUNRELEASED.Size" type="System.Drawing.Size, System.Drawing">
<value>93, 21</value>
</data>
<data name="ChkQuestFilterUNRELEASED.Text" xml:space="preserve">
<value>Unreleased</value>
</data>
<data name="ChkQuestFilterHIDDEN.Size" type="System.Drawing.Size, System.Drawing">
<value>69, 21</value>
</data>
<data name="ChkQuestFilterHIDDEN.Text" xml:space="preserve">
<value>Hidden</value>
</data>
<data name="BtnFinishQuest.Text" xml:space="preserve">
<value>Finish</value>
</data>
<data name="BtnAddQuest.Text" xml:space="preserve">
<value>Add</value>
</data>
<data name="LblQuestDescription.Text" xml:space="preserve">
<value>Add or Finish Quest
Tip: Many quest require server-side scripting support
Therefore, the quest can be add and finish, but not necessarily can be work</value>
</data>
<data name="TPSpawn.Text" xml:space="preserve">
<value>Spawn</value>
</data>
<data name="BtnSaveSpawnLog.Text" xml:space="preserve">
<value>√ Record</value>
</data>
<data name="BtnRemoveSpawnLog.Text" xml:space="preserve">
<value>× Delete</value>
</data>
<data name="GrpSpawnRecord.Text" xml:space="preserve">
<value>Records</value>
</data>
<data name="GrpEntityType.Text" xml:space="preserve">
<value>Class</value>
</data>
<data name="RbEntityOrnament.Size" type="System.Drawing.Size, System.Drawing">
<value>84, 21</value>
</data>
<data name="RbEntityOrnament.Text" xml:space="preserve">
<value>Ornament</value>
</data>
<data name="RbEntityAnimal.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 21</value>
</data>
<data name="RbEntityAnimal.Text" xml:space="preserve">
<value>Animal</value>
</data>
<data name="RbEntityMonster.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 21</value>
</data>
<data name="RbEntityMonster.Text" xml:space="preserve">
<value>Monster</value>
</data>
<data name="LblSpawnDescription.Size" type="System.Drawing.Size, System.Drawing">
<value>81, 17</value>
</data>
<data name="LblSpawnDescription.Text" xml:space="preserve">
<value>Spawn entity</value>
</data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="LblEntityAmount.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left</value>
</data>
<data name="LblEntityAmount.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 17</value>
</data>
<data name="LblEntityAmount.Text" xml:space="preserve">
<value>Amount</value>
</data>
<data name="LblEntityLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>120, 218</value>
</data>
<data name="LblEntityLevel.Size" type="System.Drawing.Size, System.Drawing">
<value>20, 17</value>
</data>
<data name="LblEntityLevel.Text" xml:space="preserve">
<value>Lv</value>
</data>
<data name="NUDEntityAmout.Location" type="System.Drawing.Point, System.Drawing">
<value>64, 216</value>
</data>
<data name="NUDEntityLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>146, 216</value>
</data>
<data name="TPAvatar.Text" xml:space="preserve">
<value>Avatar</value>
</data>
<data name="LblAvatarGenWarning.Location" type="System.Drawing.Point, System.Drawing">
<value>88, 161</value>
</data>
<data name="LblAvatarGenWarning.Size" type="System.Drawing.Size, System.Drawing">
<value>427, 51</value>
</data>
<data name="LblAvatarGenWarning.Text" xml:space="preserve">
<value>WARN! Adding a character that is not officially used may result
in a corrupted account save, making it impossible to play the game.
The data may not be cleared even if the account is recreated.</value>
</data>
<data name="LblAvatar.Location" type="System.Drawing.Point, System.Drawing">
<value>135, 217</value>
</data>
<data name="LblAvatar.Size" type="System.Drawing.Size, System.Drawing">
<value>45, 17</value>
</data>
<data name="LblAvatar.Text" xml:space="preserve">
<value>Avatar</value>
</data>
<data name="LblLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>392, 216</value>
</data>
<data name="LblLevel.Size" type="System.Drawing.Size, System.Drawing">
<value>20, 17</value>
</data>
<data name="LblLevel.Text" xml:space="preserve">
<value>Lv</value>
</data>
<data name="NUDAvatarLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>418, 214</value>
</data>
<data name="CmbAvatar.Location" type="System.Drawing.Point, System.Drawing">
<value>186, 214</value>
</data>
<data name="CmbAvatar.Size" type="System.Drawing.Size, System.Drawing">
<value>200, 25</value>
</data>
<data name="TPStats.Text" xml:space="preserve">
<value>Stats</value>
</data>
<data name="GrpSetStats.Text" xml:space="preserve">
<value>Stats</value>
</data>
<data name="LblStatTip.Size" type="System.Drawing.Size, System.Drawing">
<value>26, 17</value>
</data>
<data name="LblStatTip.Text" xml:space="preserve">
<value>Tip</value>
</data>
<data name="GrpTalentLevel.Text" xml:space="preserve">
<value>Talent Level</value>
</data>
<data name="LnkTalentE.Location" type="System.Drawing.Point, System.Drawing">
<value>283, 24</value>
</data>
<data name="LnkTalentE.Size" type="System.Drawing.Size, System.Drawing">
<value>15, 17</value>
</data>
<data name="LnkTalentE.Text" xml:space="preserve">
<value>E</value>
</data>
<data name="LnkTalentQ.Location" type="System.Drawing.Point, System.Drawing">
<value>259, 24</value>
</data>
<data name="LnkTalentQ.Size" type="System.Drawing.Size, System.Drawing">
<value>18, 17</value>
</data>
<data name="LnkTalentQ.Text" xml:space="preserve">
<value>Q</value>
</data>
<data name="LnkTalentNormalATK.Location" type="System.Drawing.Point, System.Drawing">
<value>178, 24</value>
</data>
<data name="LnkTalentNormalATK.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 17</value>
</data>
<data name="LnkTalentNormalATK.Text" xml:space="preserve">
<value>NormalATK</value>
</data>
<data name="NUDTalentLevel.Size" type="System.Drawing.Size, System.Drawing">
<value>128, 23</value>
</data>
<data name="LblStatsDescription.Size" type="System.Drawing.Size, System.Drawing">
<value>179, 17</value>
</data>
<data name="LblStatsDescription.Text" xml:space="preserve">
<value>Set current active Avatar data</value>
</data>
<data name="TPWeapon.Text" xml:space="preserve"> <data name="TPWeapon.Text" xml:space="preserve">
<value>Weapon</value> <value>Weapon</value>
</data> </data>
<data name="LblWeaponDescription.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 6</value>
</data>
<data name="LblWeaponDescription.Size" type="System.Drawing.Size, System.Drawing"> <data name="LblWeaponDescription.Size" type="System.Drawing.Size, System.Drawing">
<value>93, 17</value> <value>93, 17</value>
</data> </data>
@@ -328,7 +516,6 @@
<data name="TPItem.Text" xml:space="preserve"> <data name="TPItem.Text" xml:space="preserve">
<value>Items</value> <value>Items</value>
</data> </data>
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="BtnSaveGiveItemLog.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="BtnSaveGiveItemLog.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Left</value> <value>Top, Left</value>
</data> </data>
@@ -410,124 +597,71 @@
<data name="NUDGameItemLevel.Location" type="System.Drawing.Point, System.Drawing"> <data name="NUDGameItemLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>209, 216</value> <value>209, 216</value>
</data> </data>
<data name="LblGiveCommandDescription.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 6</value>
</data>
<data name="LblGiveCommandDescription.Size" type="System.Drawing.Size, System.Drawing"> <data name="LblGiveCommandDescription.Size" type="System.Drawing.Size, System.Drawing">
<value>118, 17</value> <value>118, 17</value>
</data> </data>
<data name="LblGiveCommandDescription.Text" xml:space="preserve"> <data name="LblGiveCommandDescription.Text" xml:space="preserve">
<value>Give item to player</value> <value>Give item to player</value>
</data> </data>
<data name="TPAvatar.Text" xml:space="preserve">
<value>Avatar</value>
</data>
<data name="LblAvatarGenWarning.Location" type="System.Drawing.Point, System.Drawing">
<value>88, 161</value>
</data>
<data name="LblAvatarGenWarning.Size" type="System.Drawing.Size, System.Drawing">
<value>427, 51</value>
</data>
<data name="LblAvatarGenWarning.Text" xml:space="preserve">
<value>WARN! Adding a character that is not officially used may result
in a corrupted account save, making it impossible to play the game.
The data may not be cleared even if the account is recreated.</value>
</data>
<data name="LblAvatar.Location" type="System.Drawing.Point, System.Drawing">
<value>135, 217</value>
</data>
<data name="LblAvatar.Size" type="System.Drawing.Size, System.Drawing">
<value>45, 17</value>
</data>
<data name="LblAvatar.Text" xml:space="preserve">
<value>Avatar</value>
</data>
<data name="LblLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>392, 216</value>
</data>
<data name="LblLevel.Size" type="System.Drawing.Size, System.Drawing">
<value>20, 17</value>
</data>
<data name="LblLevel.Text" xml:space="preserve">
<value>Lv</value>
</data>
<data name="NUDAvatarLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>418, 214</value>
</data>
<data name="CmbAvatar.Location" type="System.Drawing.Point, System.Drawing">
<value>186, 214</value>
</data>
<data name="CmbAvatar.Size" type="System.Drawing.Size, System.Drawing">
<value>200, 25</value>
</data>
<data name="TPSpawn.Text" xml:space="preserve">
<value>Spawn</value>
</data>
<data name="BtnSaveSpawnLog.Text" xml:space="preserve">
<value>√ Record</value>
</data>
<data name="BtnRemoveSpawnLog.Text" xml:space="preserve">
<value>× Delete</value>
</data>
<data name="GrpSpawnRecord.Text" xml:space="preserve">
<value>Records</value>
</data>
<data name="GrpEntityType.Text" xml:space="preserve">
<value>Class</value>
</data>
<data name="RbEntityOrnament.Size" type="System.Drawing.Size, System.Drawing">
<value>84, 21</value>
</data>
<data name="RbEntityOrnament.Text" xml:space="preserve">
<value>Ornament</value>
</data>
<data name="RbEntityAnimal.Size" type="System.Drawing.Size, System.Drawing">
<value>65, 21</value>
</data>
<data name="RbEntityAnimal.Text" xml:space="preserve">
<value>Animal</value>
</data>
<data name="RbEntityMonster.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 21</value>
</data>
<data name="RbEntityMonster.Text" xml:space="preserve">
<value>Monster</value>
</data>
<data name="LblSpawnDescription.Size" type="System.Drawing.Size, System.Drawing">
<value>81, 17</value>
</data>
<data name="LblSpawnDescription.Text" xml:space="preserve">
<value>Spawn entity</value>
</data>
<data name="LblEntityAmount.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Bottom, Left</value>
</data>
<data name="LblEntityAmount.Size" type="System.Drawing.Size, System.Drawing">
<value>53, 17</value>
</data>
<data name="LblEntityAmount.Text" xml:space="preserve">
<value>Amount</value>
</data>
<data name="LblEntityLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>120, 218</value>
</data>
<data name="LblEntityLevel.Size" type="System.Drawing.Size, System.Drawing">
<value>20, 17</value>
</data>
<data name="LblEntityLevel.Text" xml:space="preserve">
<value>Lv</value>
</data>
<data name="NUDEntityAmout.Location" type="System.Drawing.Point, System.Drawing">
<value>64, 216</value>
</data>
<data name="NUDEntityLevel.Location" type="System.Drawing.Point, System.Drawing">
<value>146, 216</value>
</data>
<data name="TPScene.Text" xml:space="preserve"> <data name="TPScene.Text" xml:space="preserve">
<value>Scene</value> <value>Scene</value>
</data> </data>
<data name="ChkIncludeSceneId.Location" type="System.Drawing.Point, System.Drawing">
<value>91, 213</value>
</data>
<data name="ChkIncludeSceneId.Size" type="System.Drawing.Size, System.Drawing">
<value>122, 21</value>
</data>
<data name="ChkIncludeSceneId.Text" xml:space="preserve">
<value>Include scene Id</value>
</data>
<data name="LblTp.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Left, Right</value>
</data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="LblTp.AutoSize" type="System.Boolean, mscorlib">
<value>False</value>
</data>
<data name="LblTp.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 89</value>
</data>
<data name="LblTp.Size" type="System.Drawing.Size, System.Drawing">
<value>337, 90</value>
</data>
<data name="LblTp.Text" xml:space="preserve">
<value>Teleporting
Tip: You can quickly teleport through the 'fishing hook' mark on the minimap in the game
In the command, you can use ~ to indicate the current position, and ~100 to indicate the relative current 100</value>
</data>
<data name="LblTpZ.Location" type="System.Drawing.Point, System.Drawing">
<value>219, 184</value>
</data>
<data name="LblTpY.Location" type="System.Drawing.Point, System.Drawing">
<value>113, 184</value>
</data>
<data name="BtnTeleport.Location" type="System.Drawing.Point, System.Drawing">
<value>10, 211</value>
</data>
<data name="BtnTeleport.Text" xml:space="preserve">
<value>Teleport</value>
</data>
<data name="LblTpX.Location" type="System.Drawing.Point, System.Drawing">
<value>7, 184</value>
</data>
<data name="NUDTpZ.Location" type="System.Drawing.Point, System.Drawing">
<value>239, 182</value>
</data>
<data name="NUDTpY.Location" type="System.Drawing.Point, System.Drawing">
<value>133, 182</value>
</data>
<data name="NUDTpX.Location" type="System.Drawing.Point, System.Drawing">
<value>27, 182</value>
</data>
<data name="CmbClimateType.Location" type="System.Drawing.Point, System.Drawing"> <data name="CmbClimateType.Location" type="System.Drawing.Point, System.Drawing">
<value>66, 94</value> <value>66, 61</value>
</data>
<data name="LblClimateType.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 64</value>
</data> </data>
<data name="LblClimateType.Size" type="System.Drawing.Size, System.Drawing"> <data name="LblClimateType.Size" type="System.Drawing.Size, System.Drawing">
<value>54, 17</value> <value>54, 17</value>
@@ -536,77 +670,18 @@ The data may not be cleared even if the account is recreated.</value>
<value>weather</value> <value>weather</value>
</data> </data>
<data name="LblSceneDescription.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms"> <data name="LblSceneDescription.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
<value>Top, Bottom, Left, Right</value> <value>Top, Left, Right</value>
</data> </data>
<assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
<data name="LblSceneDescription.AutoSize" type="System.Boolean, mscorlib"> <data name="LblSceneDescription.AutoSize" type="System.Boolean, mscorlib">
<value>False</value> <value>False</value>
</data> </data>
<data name="LblSceneDescription.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 6</value>
</data>
<data name="LblSceneDescription.Size" type="System.Drawing.Size, System.Drawing"> <data name="LblSceneDescription.Size" type="System.Drawing.Size, System.Drawing">
<value>287, 88</value> <value>287, 55</value>
</data> </data>
<data name="LblSceneDescription.Text" xml:space="preserve"> <data name="LblSceneDescription.Text" xml:space="preserve">
<value>Scene control <value>Scene control
Tip: Most of the scenes have no effect and cannot be entered.</value> Tip: Most of the scenes have no effect and cannot be entered.</value>
</data> </data>
<data name="TPStats.Text" xml:space="preserve">
<value>Stats</value>
</data>
<data name="GrpSetStats.Text" xml:space="preserve">
<value>Stats</value>
</data>
<data name="LblStatTip.Size" type="System.Drawing.Size, System.Drawing">
<value>26, 17</value>
</data>
<data name="LblStatTip.Text" xml:space="preserve">
<value>Tip</value>
</data>
<data name="GrpTalentLevel.Text" xml:space="preserve">
<value>Talent Level</value>
</data>
<data name="LnkTalentE.Location" type="System.Drawing.Point, System.Drawing">
<value>283, 24</value>
</data>
<data name="LnkTalentE.Size" type="System.Drawing.Size, System.Drawing">
<value>15, 17</value>
</data>
<data name="LnkTalentE.Text" xml:space="preserve">
<value>E</value>
</data>
<data name="LnkTalentQ.Location" type="System.Drawing.Point, System.Drawing">
<value>259, 24</value>
</data>
<data name="LnkTalentQ.Size" type="System.Drawing.Size, System.Drawing">
<value>18, 17</value>
</data>
<data name="LnkTalentQ.Text" xml:space="preserve">
<value>Q</value>
</data>
<data name="LnkTalentNormalATK.Location" type="System.Drawing.Point, System.Drawing">
<value>178, 24</value>
</data>
<data name="LnkTalentNormalATK.Size" type="System.Drawing.Size, System.Drawing">
<value>75, 17</value>
</data>
<data name="LnkTalentNormalATK.Text" xml:space="preserve">
<value>NormalATK</value>
</data>
<data name="NUDTalentLevel.Size" type="System.Drawing.Size, System.Drawing">
<value>128, 23</value>
</data>
<data name="LblStatsDescription.Location" type="System.Drawing.Point, System.Drawing">
<value>6, 6</value>
</data>
<data name="LblStatsDescription.Size" type="System.Drawing.Size, System.Drawing">
<value>179, 17</value>
</data>
<data name="LblStatsDescription.Text" xml:space="preserve">
<value>Set current active Avatar data</value>
</data>
<data name="TPManage.Text" xml:space="preserve"> <data name="TPManage.Text" xml:space="preserve">
<value>Manage</value> <value>Manage</value>
</data> </data>

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,22 @@
using System; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Data; using System.Data;
using System.Linq; using System.Linq;

View File

@@ -1,4 +1,22 @@
namespace GrasscutterTools.Game.Gacha /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
namespace GrasscutterTools.Game.Gacha
{ {
public enum BannerType public enum BannerType
{ {

View File

@@ -1,4 +1,22 @@
using System.ComponentModel; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System.ComponentModel;
using Newtonsoft.Json; using Newtonsoft.Json;
using Newtonsoft.Json.Converters; using Newtonsoft.Json.Converters;

View File

@@ -1,4 +1,22 @@
namespace GrasscutterTools.Game /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
namespace GrasscutterTools.Game
{ {
public class GameCommand public class GameCommand
{ {

View File

@@ -1,4 +1,22 @@
using GrasscutterTools.Properties; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using GrasscutterTools.Properties;
namespace GrasscutterTools.Game namespace GrasscutterTools.Game
{ {
@@ -21,6 +39,7 @@ namespace GrasscutterTools.Game
WeaponColors = new ItemMap(Resources.WeaponColor); WeaponColors = new ItemMap(Resources.WeaponColor);
Ornaments = new ItemMap(Resources.Ornament); Ornaments = new ItemMap(Resources.Ornament);
GachaBannerPrefabs = new ItemMap(Resources.GachaBennerPrefab); GachaBannerPrefabs = new ItemMap(Resources.GachaBennerPrefab);
Quests = new ItemMap(Resources.Quest);
} }
public static ItemMap Animals { get; private set; } public static ItemMap Animals { get; private set; }
@@ -52,5 +71,7 @@ namespace GrasscutterTools.Game
public static ItemMap Ornaments { get; private set; } public static ItemMap Ornaments { get; private set; }
public static ItemMap GachaBannerPrefabs { get; private set; } public static ItemMap GachaBannerPrefabs { get; private set; }
public static ItemMap Quests { get; private set; }
} }
} }

View File

@@ -1,4 +1,22 @@
using System.Collections.Generic; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System.Collections.Generic;
namespace GrasscutterTools.Game namespace GrasscutterTools.Game
{ {

View File

@@ -1,4 +1,22 @@
using System.Text; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System.Text;
using GrasscutterTools.Properties; using GrasscutterTools.Properties;

View File

@@ -1,4 +1,22 @@
using System.Collections.Generic; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;

View File

@@ -298,6 +298,7 @@
<Content Include="Resources\en-us\Monster.txt" /> <Content Include="Resources\en-us\Monster.txt" />
<Content Include="Resources\en-us\NPC.txt" /> <Content Include="Resources\en-us\NPC.txt" />
<Content Include="Resources\en-us\Ornament.txt" /> <Content Include="Resources\en-us\Ornament.txt" />
<Content Include="Resources\en-us\Quest.txt" />
<Content Include="Resources\en-us\Scene.txt" /> <Content Include="Resources\en-us\Scene.txt" />
<Content Include="Resources\en-us\Weapon.txt" /> <Content Include="Resources\en-us\Weapon.txt" />
<Content Include="Resources\IconGrasscutter.ico" /> <Content Include="Resources\IconGrasscutter.ico" />
@@ -319,6 +320,7 @@
<Content Include="Resources\zh-cn\Monster.txt" /> <Content Include="Resources\zh-cn\Monster.txt" />
<Content Include="Resources\zh-cn\NPC.txt" /> <Content Include="Resources\zh-cn\NPC.txt" />
<Content Include="Resources\zh-cn\Ornament.txt" /> <Content Include="Resources\zh-cn\Ornament.txt" />
<Content Include="Resources\zh-cn\Quest.txt" />
<Content Include="Resources\zh-cn\Scene.txt" /> <Content Include="Resources\zh-cn\Scene.txt" />
<Content Include="Resources\zh-cn\Weapon.txt" /> <Content Include="Resources\zh-cn\Weapon.txt" />
</ItemGroup> </ItemGroup>

View File

@@ -1,4 +1,22 @@
using System; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System;
using System.Windows.Forms; using System.Windows.Forms;
namespace GrasscutterTools namespace GrasscutterTools

View File

@@ -1,4 +1,22 @@
using System; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System;
using System.Threading.Tasks; using System.Threading.Tasks;
using GrasscutterTools.Utils; using GrasscutterTools.Utils;

View File

@@ -1,4 +1,22 @@
using System; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System;
using System.Text; using System.Text;
using System.Threading; using System.Threading;
using System.Windows.Forms; using System.Windows.Forms;

View File

@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
//可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值 //可以指定所有这些值,也可以使用“生成号”和“修订号”的默认值
//通过使用 "*",如下所示: //通过使用 "*",如下所示:
// [assembly: AssemblyVersion("1.0.*")] // [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1")] [assembly: AssemblyVersion("1.2.0")]
[assembly: AssemblyFileVersion("1.0.0")] [assembly: AssemblyFileVersion("1.0.0")]

View File

@@ -510,11 +510,11 @@ namespace GrasscutterTools.Properties {
///私信 ///私信
////say &lt;player&gt; &lt;message&gt; ////say &lt;player&gt; &lt;message&gt;
///进来吧你 ///进来吧你
////coop &lt;playerId&gt; &lt;target playerId&gt; ////coop @targetId
///自杀 ///自杀
////killcharacter ////killcharacter
///暗杀 ///暗杀
/// [字符串的其余部分被截断]&quot;; 的本地化字符串。 ////killcharacter &lt;pla [字符串的其余部分被截断]&quot;; 的本地化字符串。
/// </summary> /// </summary>
internal static string CustomCommands { internal static string CustomCommands {
get { get {
@@ -852,6 +852,47 @@ namespace GrasscutterTools.Properties {
return ResourceManager.GetString("Permissions", resourceCulture); return ResourceManager.GetString("Permissions", resourceCulture);
} }
} }
/// <summary>
/// 查找类似 347: 阅读占坑$HIDDEN
///348: 猫尾酒馆留言板$HIDDEN
///349: 蒙德百货订货版$HIDDEN
///350: 捕风的异乡人$HIDDEN
///351: 流浪者的足迹
///362: 苹果教学$HIDDEN
///352: 鸟瞰风物
///353: 异常的权柄
///361: 风魔龙飞过$HIDDEN
///355: 林间相会
///354: 随风而来的骑士
///360: 与轻风同行
///356: 自由之都
///357: 龙灾
///358: 西风骑士团
///359: (test)蒙德与三地城$HIDDEN
///306: 昔日的风
///307: 骑士的现场教习
///308: 书页里的电火花
///309: (test)蒙德之围$HIDDEN
///310: 招募新伙伴
///311: (test)一阶段结束$HIDDEN
///312: (test)丽莎地城,丽莎书本奖励$HIDDEN
///363: (test)控制第一幕开始的隐藏任务$HIDDEN
///370: 阴影下的蒙德
///371: 不期而遇
///372: 那个绿色的家伙
///373: 听凭风引
///374: 温迪的计划
///375: 温迪的新计划
///376: 逃亡
///377: 幕后谈话
///20101: [字符串的其余部分被截断]&quot;; 的本地化字符串。
/// </summary>
internal static string Quest {
get {
return ResourceManager.GetString("Quest", resourceCulture);
}
}
/// <summary> /// <summary>
/// 查找类似 请先连接到支持[OpenCommand]的服务器 的本地化字符串。 /// 查找类似 请先连接到支持[OpenCommand]的服务器 的本地化字符串。

View File

@@ -211,6 +211,9 @@
<data name="Permissions" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="Permissions" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Permissions.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value> <value>..\Resources\Permissions.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data> </data>
<data name="Quest" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\en-us\Quest.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data>
<data name="RequireOpenCommandTip" xml:space="preserve"> <data name="RequireOpenCommandTip" xml:space="preserve">
<value>Please connect to a server that supports [opencommand] first</value> <value>Please connect to a server that supports [opencommand] first</value>
</data> </data>

View File

@@ -214,6 +214,9 @@
<data name="Permissions" type="System.Resources.ResXFileRef, System.Windows.Forms"> <data name="Permissions" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\Permissions.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value> <value>..\Resources\Permissions.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data> </data>
<data name="Quest" type="System.Resources.ResXFileRef, System.Windows.Forms">
<value>..\Resources\zh-cn\Quest.txt;System.String, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089;utf-8</value>
</data>
<data name="RequireOpenCommandTip" xml:space="preserve"> <data name="RequireOpenCommandTip" xml:space="preserve">
<value>请先连接到支持[OpenCommand]的服务器</value> <value>请先连接到支持[OpenCommand]的服务器</value>
</data> </data>

View File

@@ -1,224 +1,224 @@
28010101: 黄金蟹 28010101: Golden Crab
28010102: 太阳蟹 28010102: Sun Crab
28010103: 海蓝蟹 28010103: Ocean Crab
28010104: 将军蟹 28010104: General Crab
28010105: 薄红蟹 28010105: Pale Red Crab
28010106: 螃蟹 28010106: Crab
28020101: 雪狐 28010201: Blue Horned Lizard
28020102: 红狐 28010202: Red Horned Lizard
28020103: 送礼雪狐 28010203: Green Horned Lizard
28020104: 送大礼雪狐 28010204: Sunset Loach
28020105: 雪狐 28010205: Golden Loach
28020106: 红狐 28010206: Sunny Loach
28020201: 松鼠 28010207: Pith Lizard
28030101: 蓝翎鹭 28010301: Frog
28030102: 菫鹮 28010302: Mud Frog
28030201: 茶羽鹰 28010303: Blue Frog
28030202: 棕翎鹰 28010401: Adorned Unagi
28030203: 石鸢 28010402: Deep Sea Unagi
28030204: 白练鹰 28010403: Red-Finned Unagi
28050101: 风晶蝶 28020101: Snow Fox
28050102: 岩晶蝶 28020102: Crimson Fox
28050103: 冰晶蝶 28020103: Gifting Snow Fox
28050104: 雷晶蝶 28020104: Super-Gifting Snow Fox
28050105: 珊瑚蝶 28020105: Snow Fox
28050301: 吉光虫 28020106: Crimson Fox
28010201: 蓝角蜥 28020201: Squirrel
28010202: 红角蜥 28020301: Forest Boar
28010203: 绿角蜥 28020302: Forest Piglet
28010204: 落日鳅鳅 28020303: Snowboar
28010205: 金鳅鳅 28020304: Great Snowboar King
28010206: 晴天鳅鳅 28020305: Frozen Snowboar
28010207: 嗜髓蜥 28020306: Snowboar
28010301: 青蛙 28020307: Forest Boar
28010302: 泥蛙 28020308: Frozen Snowboar
28010303: 蓝蛙 28020309: Great Snowboar King
28010401: 藤纹陆鳗鳗 28020401: Northland Hound
28010402: 深海鳗鳗 28020402: Forest-Patrol Hound
28010403: 赤鳍陆鳗鳗 28020403: Shiba
28020301: 野林猪 28020404: Black-Back Hound
28020302: 小野林猪 28020405: Shiba
28020303: 雪猪 28020406: Northland Hound
28020304: 「大雪猪王」 28020407: Northland Hound
28020305: 冰冻雪猪 28020408: Forest-Patrol Hound
28020306: 雪猪 28020409: Shiba
28020307: 野林猪 28020410: Black-Back Hound
28020308: 冰冻雪猪 28020501: Sapphire
28020309: 「大雪猪王」 28020502: Jade-Eyed Cat
28030301: 白鸽 28020503: Gray Snow Cat
28030302: 璃冠鸽 28020504: Northland Cat
28030303: 灰羽鸽 28020505: Tiger-Striped Cat
28030304: 赤胁鸽 28020506: Sheriff Cat
28030305: 黑王鸽 28020507: Black Cat
28030306: 鸦 28020508: Sapphire
28030307: 白鸽 28020509: Gray Snow Cat
28030308: 璃冠鸽 28020510: Jade-Eyed Cat
28030309: 灰羽鸽 28020511: Gray Snow Cat
28030310: 赤胁鸽 28020512: Northland Cat
28030311: 黑王鸽 28020513: Tiger-Striped Cat
28030401: 赤团雀 28020601: Snow Weasel
28030402: 金团雀 28020602: Red-Tailed Weasel
28030403: 雪团雀 28020603: Boot Weasel
28030404: 碧团雀 28020604: Masked Weasel
28030405: 金团雀 28020605: Bluethunder Weasel
28030406: 赤团雀 28020701: Kitsune
28030407: 金团雀 28020702: Kitsune
28030408: 雪团雀 28020801: Bake-Danuki
28030409: 碧团雀 28020802: Master Yoshimoto (test)
28030501: 赤喙鸭 28020803: Bake-Danuki
28030502: 翠冠鸭 28020901: Samurai Dog Diversion (test)
28030503: 沉金鸭 28020902: Samurai dog boss (test)
28030504: 赤喙鸭 28030101: Azure Crane
28040101: 黑背鲈鱼 28030102: Violet Ibis
28040102: 蓝鳍鲈鱼 28030201: Brownwing Falcon
28040103: 黄金鲈鱼 28030202: Umbertail Falcon
28040104: 黑背鲈鱼 28030203: Lapis Glede
28040105: 黑背鲈鱼 28030204: Silkwhite Falcon
28040106: 蓝鳍鲈鱼 28030301: White Pigeon
28040107: 黄金鲈鱼 28030302: Brightcrown Pigeon
28040108: 黑背鲈鱼 28030303: Graywing Pigeon
28040201: 花鳉 28030304: Crimsonflank Pigeon
28040202: 琉璃花鳉 28030305: Black King Pigeon
28040203: 甜甜花鳉 28030306: Crow
28040204: 蓝染花鳉 28030307: White Pigeon
28040205: 擒霞客 28030308: Brightcrown Pigeon
28040206: 水晶宴 28030309: Graywing Pigeon
28040301: 肺棘鱼 28030310: Crimsonflank Pigeon
28040302: 斗棘鱼 28030311: Black King Pigeon
28040303: 鸩棘鱼 28030401: Crimson Finch
28040304: 赤魔王 28030402: Golden Finch
28040305: 雪中君 28030403: Snow Finch
28040401: 金赤假龙 28030404: Emerald Finch
28040402: 锖假龙 28030405: Golden Finch
28040501: 流纹褐蝶鱼 28030406: Crimson Finch
28040502: 流纹京紫蝶鱼 28030407: Golden Finch
28040503: 流纹茶蝶鱼 28030408: Snow Finch
28040504: 长生仙 28030409: Emerald Finch
28040505: 雷鸣仙 28030501: Scarletbeak Duck
28040506: 月光鳍 28030502: Emerald Duck
28040601: 炮鲀 28030503: Golden Duck
28040602: 苦炮鲀 28030504: Scarletbeak Duck
28040701: 迪芙妲鳐 28040101: Black-Back Bass
28040702: 佛玛洛鳐 28040102: Blue-Fin Bass
28040703: 幽浮鳐 28040103: Golden Bass
28020401: 北地犬 28040104: Black-Back Bass
28020402: 巡林犬 28040105: Black-Back Bass
28020403: 柴犬 28040106: Blue-Fin Bass
28020404: 黑背猎犬 28040107: Golden Bass
28020405: 柴犬 28040108: Black-Back Bass
28020406: 北地犬 28040201: Medaka
28020407: 北地犬 28040202: Glaze Medaka
28020408: 巡林犬 28040203: Sweet-Flower Medaka
28020409: 柴犬 28040204: Aizen Medaka
28020410: 黑背猎犬 28040205: Dawncatcher
28020501: 蓝宝石 28040206: Crystalfish
28020502: 翠目猫 28040301: Lunged Stickleback
28020503: 灰雪猫 28040302: Betta
28020504: 北地猫 28040303: Venomspine Fish
28020505: 虎纹猫 28040304: Akai Maou
28020506: 警长猫 28040305: Snowstrider
28020507: 黑猫 28040401: Golden Koi
28020508: 蓝宝石 28040402: Rusty Koi
28020509: 灰雪猫 28040501: Brown Shirakodai
28020510: 翠目猫 28040502: Purple Shirakodai
28020511: 灰雪猫 28040503: Tea-Colored Shirakodai
28020512: 北地猫 28040504: Abiding Angelfish
28020513: 虎纹猫 28040505: Raimei Angelfish
28020601: 雪隐鼬 28040506: Moonfin
28020602: 红尾鼬 28040601: Pufferfish
28020603: 靴子鼬 28040602: Bitter Pufferfish
28020604: 面具鼬 28040701: Divda Ray
28020605: 青雷鼬 28040702: Formalo Ray
28050201: 新手盗宝鼬 28040703: Floating Ray
28050202: 藏金盗宝鼬 28050101: Anemo Crystalfly
28050203: 大黄金盗宝鼬 28050102: Geo Crystalfly
28050211: 新手盗宝鼬 28050103: Cryo Crystalfly
28050212: 藏金盗宝鼬 28050104: Electro Crystalfly
28050213: 大黄金盗宝鼬 28050105: Coral Butterfly
28020701: 28050201: Amateur Weasel Thief
28020702: 28050202: Hoarder Weasel Thief
28020801: 妖狸 28050203: Golden Weasel Thief
28020802: 吉法师(test) 28050211: Amateur Weasel Thief
28020803: 妖狸 28050212: Hoarder Weasel Thief
28020901: 武士狗分身test 28050213: Golden Weasel Thief
28020902: 武士狗bosstest 28050301: Lucklight Fly
28220301: 野林猪 28210101: Golden Crab
28220303: 雪猪 28210102: Sun Crab
28210101: 黄金蟹 28210103: Ocean Crab
28210102: 太阳蟹 28210104: General Crab
28210103: 海蓝蟹 28210105: Pale Red Crab
28210104: 将军蟹 28210201: Blue Horned Lizard
28210105: 薄红蟹 28210202: Red Horned Lizard
28220101: 雪狐 28210203: Green Horned Lizard
28220102: 红狐 28210204: Sunset Loach
28220201: 松鼠 28210205: Golden Loach
28220401: 北地犬 28210206: Sunny Loach
28220402: 巡林犬 28210207: Marrow Lizard
28220403: 柴犬 28210301: Frog
28220404: 黑背猎犬 28210302: Mud Frog
28220501: 蓝宝石 28210303: Blue Frog
28220502: 翠目猫 28210401: Adorned Unagi
28220503: 灰雪猫 28210402: Deep Sea Unagi
28220504: 北地猫 28210403: Red-Finned Unagi
28220505: 虎纹猫 28220101: Snow Fox
28220506: 警长猫 28220102: Crimson Fox
28220601: 雪隐鼬 28220201: Squirrel
28220602: 红尾鼬 28220301: Forest Boar
28220603: 靴子鼬 28220303: Snowboar
28220605: 青雷鼬 28220401: Northland Hound
28220701: 狐 28220402: Forest-Patrol Hound
28220901: 武士狗test 28220403: Shiba
28230101: 蓝翎鹭 28220404: Black-Back Hound
28230102: 菫鹮 28220501: Sapphire
28250101: 风晶蝶 28220502: Jade-Eyed Cat
28250102: 岩晶蝶 28220503: Gray Snow Cat
28250103: 冰晶蝶 28220504: Northland Cat
28250104: 雷晶蝶 28220505: Tiger-Striped Cat
28250105: 珊瑚蝶 28220506: Sheriff Cat
28250301: 吉光虫 28220601: Snow Weasel
28210201: 蓝角蜥 28220602: Red-Tailed Weasel
28210202: 红角蜥 28220603: Boot Weasel
28210203: 绿角蜥 28220605: Bluethunder Weasel
28210204: 落日鳅鳅 28220701: Kitsune
28210205: 金鳅鳅 28220901: Samurai dog (test)
28210206: 晴天鳅鳅 28230101: Azure Crane
28210207: 嗜髓蜥 28230102: Violet Ibis
28210301: 青蛙 28230301: White Pigeon
28210302: 泥蛙 28230302: Brightcrown Pigeon
28210303: 蓝蛙 28230303: Graywing Pigeon
28210401: 藤纹陆鳗鳗 28230304: Crimsonflank Pigeon
28210402: 深海鳗鳗 28230305: Black King Pigeon
28210403: 赤鳍陆鳗鳗 28230306: Crow
28230301: 白鸽 28230401: Crimson Finch
28230302: 璃冠鸽 28230402: Golden Finch
28230303: 灰羽鸽 28230403: Snow Finch
28230304: 赤胁鸽 28230404: Emerald Finch
28230305: 黑王鸽 28240201: Medaka
28230306: 鸦 28240202: Glaze Medaka
28230401: 赤团雀 28240203: Sweet-Flower Medaka
28230402: 金团雀 28240204: Aizen Medaka
28230403: 雪团雀 28240205: Dawncatcher
28230404: 碧团雀 28240206: Crystalfish
28240201: 花鳉 28240301: Lunged Stickleback
28240202: 琉璃花鳉 28240302: Betta
28240203: 甜甜花鳉 28240303: Venomspine Fish
28240204: 蓝染花鳉 28240304: Akai Maou
28240205: 擒霞客 28240305: Snowstrider
28240206: 水晶宴 28240401: Golden Koi
28240301: 肺棘鱼 28240402: Rusty Koi
28240302: 斗棘鱼 28240501: Brown Shirakodai
28240303: 鸩棘鱼 28240502: Purple Shirakodai
28240304: 赤魔王 28240503: Tea-Colored Shirakodai
28240305: 雪中君 28240504: Abiding Angelfish
28240401: 金赤假龙 28240505: Raimei Angelfish
28240402: 锖假龙 28240506: Moonfin
28240501: 流纹褐蝶鱼 28240601: Pufferfish
28240502: 流纹京紫蝶鱼 28240602: Bitter Pufferfish
28240503: 流纹茶蝶鱼 28240701: Divda Ray
28240504: 长生仙 28240702: Formalo Ray
28240505: 雷鸣仙 28250101: Anemo Crystalfly
28240506: 月光鳍 28250102: Geo Crystalfly
28240601: 炮鲀 28250103: Cryo Crystalfly
28240602: 苦炮鲀 28250104: Electro Crystalfly
28240701: 迪芙妲鳐 28250105: Coral Butterfly
28240702: 佛玛洛鳐 28250301: Lucklight Fly

File diff suppressed because it is too large Load Diff

View File

@@ -41,7 +41,7 @@ Restart Server
Send PM Send PM
/say <player> <message> /say <player> <message>
Pull in team Pull in team
/coop <playerId> <target playerId> /coop @targetId
Suicide Suicide
/killcharacter /killcharacter
Kill Somebody Kill Somebody
@@ -50,3 +50,5 @@ List ALL users
/list uid /list uid
Reload service config Reload service config
/reload /reload
KillAll
/killall

File diff suppressed because it is too large Load Diff

View File

@@ -1,568 +1,330 @@
20010101 : Dendro Slime 21010101: Hilichurl
20010201 : Large Dendro Slime
20010202 :
20010301 : Anemo Slime
20010302 : Anemo Slime (Mechanicus)
20010401 : Large Anemo Slime
20010402 : Large Anemo Slime (Mechanicus)
20010403 :
20010501 : Electro Slime
20010502 : Electro Slime (Mechanicus)
20010601 : Large Electro Slime
20010602 : Large Electro Slime (Mechanicus)
20010604 :
20010701 : Mutant Electro Slime
20010702 :
20010703 : Mutant Electro Slime (Mechanicus)
20010801 : Cryo Slime
20010802 : Cryo Slime - Dragonspine Event
20010803 : Cryo Slime (Mechanicus)
20010901 : Large Cryo Slime
20010902 : Large Cryo Slime - Snowy Mountain Event
20010903 : Large Cryo Slime (Mechanicus)
20010904 :
20011001 : Hydro Slime
20011002 : Hydro Slime (Mechanicus)
20011101 : Large Hydro Slime
20011102 : Large Hydro Slime (Mechanicus)
20011103 :
20011201 : Pyro Slime
20011202 : Pyro Slime
20011203 : Pyro Slime (Mechanicus)
20011301 : Large Pyro Slime
20011302 : Large Pyro Slime (Mechanicus)
20011304 :
20011401 : Geo Slime
20011402 : Geo Slime (Mechanicus)
20011501 : Large Geo Slime
20011502 :
20011503 : Large Geo Slime (Mechanicus)
20011601 : Hydro Hypostasis Summon: Split (L)
20011701 : Hydro Hypostasis Summon: Split (S)
20011801 : Hydro Hypostasis Summon: Self-Destruct
20011901 : Hydro Hypostasis Summon: Heal
20020101 : Eye of the Storm
20040101 : Electro Hypostasis - Aleph
20040102 : (Event) Electro Hypostasis - Aleph
20040201 : Anemo Hypostasis - Beth
20040202 : (Event) Anemo Hypostasis - Beth
20040301 : Geo Hypostasis: Gimel
20040302 : (Event) Geo Hypostasis - Gimel
20040401 : Hydro Hypostasis
20040501 : Cryo Hypostasis - Daleth
20040601 : Pyro Hypostasis: Ayin
20050101 : Oceanid
20050102 : Oceanid (Main Body)
20050201 : Oceanid Boar
20050202 : Oceanid Boar (Enhanced)
20050203 :
20050301 : Oceanid Crane
20050302 :
20050401 : Oceanid Crab
20050402 : Oceanid Crab (Enhanced)
20050403 :
20050501 : Oceanid Finch
20050502 :
20050601 : Oceanid Mallard
20050602 : Oceanid Mallard (Landwalker Version)
20050603 :
20050701 : Oceanid Ferret
20050702 : Oceanid Ferret (Enhanced)
20050703 :
20050801 : Oceanid Frog
20050802 :
20050901 : Oceanid Raptor
20060101 : Hydro Specter
20060201 : Geo Specter
20060301 : Anemo Specter
20060401 : null
20060501 : null
20060601 : null
20070101 : Thunder Manifestation
21010101 : Hilichurl
21010102 : Hilichurl (Mechanicus)
21010201 : Hilichurl Fighter
21010301 : Wooden Shield Hilichurl Guard
21010302 : Wooden Shield Hilichurl Guard (Mechanicus)
21010401 : Hilichurl Shooter
21010402 : Test_Varied Hilichurl Shooter
21010501 : Pyro Hilichurl Shooter
21010502 : Test_Varied Pyro Hilichurl Shooter
21010601 : Hilichurl Grenadier
21010603 :
21010701 : Hilichurl Berserker
21010702 : Hilichurl Berserker (Mechanicus)
21010901 : Cryo Hilichurl Shooter
21010902 : Test_Varied Cryo Hilichurl Shooter
21011001 : Electro Hilichurl Shooter
21011002 : Test_Varied Electro Hilichurl Shooter
21011201 : Rock Shield Hilichurl Guard
21011202 : Rock Shield Hilichurl Guard (Mechanicus)
21011301 : Cryo Hilichurl Grenadier
21011302 : Cryo Hilichurl Grenadier - Enhanced Attack
21011401 : Ice Shield Hilichurl Guard
21011402 : Ice Shield Hilichurl Guard (Mechanicus)
21011403 : Ice Shield Hilichurl Guard: Dragonspine Event
21011501 : Unusual Unarmed Hilichurl
21011601 : Electro Hilichurl Grenadier
21011602 : Electro Hilichurl Grenadier - Enhanced Attack
21020101: Wooden Shieldwall Mitachurl 21020101: Wooden Shieldwall Mitachurl
21020102 : Wooden Shieldwall Mitachurl (Mechanicus)
21020201: Blazing Axe Mitachurl 21020201: Blazing Axe Mitachurl
21020202 : 21020202: Blazing Axe Mitachurl
21020203 : Blazing Axe Mitachurl (Mechanicus)
21020301: Rock Shieldwall Mitachurl 21020301: Rock Shieldwall Mitachurl
21020302 : Rock Shieldwall Mitachurl (Mechanicus)
21020401: Frostarm Lawachurl 21020401: Frostarm Lawachurl
21020402 : Frostarm Lawachurl (Mechanicus)
21020501: Stonehide Lawachurl 21020501: Stonehide Lawachurl
21020502 : Stonehide Lawachurl (Mechanicus)
21020601: Ice Shieldwall Mitachurl 21020601: Ice Shieldwall Mitachurl
21020602 : Ice Shieldwall Mitachurl (Mechanicus)
21020701: Crackling Axe Mitachurl 21020701: Crackling Axe Mitachurl
21020702 : Crackling Axe Mitachurl (Mechanicus) 21020703: Crackling Axe Mitachurl
21020703 : Crackling Axe Mitachurl - Enhanced Attack
21020801: Thunderhelm Lawachurl 21020801: Thunderhelm Lawachurl
21020802 : Thunderhelm Lawachurl (Mechanicus) 20010101: Dendro Slime
21030101 : Hydro Samachurl 20010201: Large Dendro Slime
21030102 : Hydro Samachurl (Mechanicus) 20010202: Large Dendro Slime
21030103 : Test_Movement Healing Hydro Samachurl 20010301: Anemo Slime
21030201 : Dendro Samachurl 20010401: Large Anemo Slime
21030202 : Dendro Samachurl (Mechanicus) 20010403: Large Anemo Slime
21030203 :
21030301 : Anemo Samachurl
21030302 : Anemo Samachurl (Mechanicus)
21030303 : Test_Wind Current Enhanced Anemo Samachurl
21030304 :
21030401 : Geo Samachurl
21030402 :
21030403 : Geo Samachurl (Mechanicus)
21030501 : Cryo Samachurl
21030502 : Cryo Samachurl (Mechanicus)
21030601 : Electro Samachurl
21030602 : Electro Samachurl (Mechanicus)
21030603 : Electro Samachurl - Enhanced Support
22010101 : Pyro Abyss Mage
22010102 : Test_Shield-Enhanced Pyro Abyss Mage
22010103 : Test_Teleport-Enhanced Pyro Abyss Mage
22010104 : Test_Attacking-Enhanced Pyro Abyss Mage
22010105 : Pyro Abyss Mage (Mechanicus)
22010201 : Cryo Abyss Mage
22010202 : Test_Shield-Enhanced Cryo Abyss Mage
22010203 : Test_Teleport-Enhanced Cryo Abyss Mage
22010204 : Test_Attacking-Enhanced Cryo Abyss Mage
22010205 : Cryo Abyss Mage (Mechanicus)
22010301 : Hydro Abyss Mage
22010302 : Test_Shield-Enhanced Hydro Abyss Mage
22010303 : Test_Teleport-Enhanced Hydro Abyss Mage
22010304 : Test_Attacking-Enhanced Hydro Abyss Mage
22010305 : Hydro Abyss Mage (Mechanicus)
22010401 : Electro Abyss Mage
22010402 : Electro Abyss Mage (Mechanicus)
22010403 : Electro Abyss Mage - Enhanced Shield
22010404 : Electro Abyss Mage - Enhanced Attack
22020101 : Abyss Herald: Wicked Torrents (Disappearing)
22020102 : Abyss Herald: Wicked Torrents (Permanent)
22030101 : Abyss Lector: Violet Lightning (Disappearing)
22030102 : Abyss Lector: Violet Lightning (Permanent)
22030201 : null
22030202 : null
22040101 : Rockfond Rifthound Whelp
22040201 : Thundercraven Rifthound Whelp
22050101 : Rockfond Rifthound
22050201 : Thundercraven Rifthound
22060101 : Golden Wolflord
22070101 : null
22070102 : null
22070201 : null
22070202 : null
22070301 : null
22070302 : null
22080101 : null
23010101 :
23010201 :
23010301 :
23010401 :
23010501 :
23010601 :
23020101 : Fatui Agent
23020102 :
23030101 : Fatui Electro Cicin Mage
23030102 :
23040101 : Fatui Cryo Cicin Mage
23040102 : Fatui Cryo Cicin Mage - Enhanced Attack
23050101 : Fatui Mirror Maiden
24010101 : Ruin Guard
24010102 : Ruin Guard (Mechanicus)
24010108 :
24010109 :
24010201 : Ruin Hunter
24010202 : Ruin Hunter (Mechanicus)
24010301 : Ruin Grader
24010302 : Ruin Grader (Mechanicus)
24010303 : Ruin Grader (Mining Version)
24010401 : null
24020101 : Ruin Cruiser
24020102 : Ruin Cruiser (Weakened)
24020103 : Ruin Cruiser (Enhanced)
24020201 : Ruin Destroyer
24020202 : Ruin Destroyer (Weakened)
24020203 : Ruin Destroyer (Enhanced)
24020301 : Ruin Defender
24020302 : Ruin Defender (Weakened)
24020303 : Ruin Defender (Enhanced)
24020401 : Ruin Scout
24020402 : Ruin Scout (Weakened)
24020403 : Ruin Scout (Enhanced)
24021101 : Perpetual Mechanical Array
24021102 : Perpetual Mechanical Array (Inazuma Event-Only)
25010101 : Liuliu
25010102 : Mystery Man
25010103 :
25010104 :
25010105 : null
25010106 : null
25010201 : Treasure Hoarder Scout
25010203 :
25010204 :
25010205 :
25010206 :
25010207 :
25010208 :
25010301 :
25010302 :
25010401 :
25010501 :
25010601 :
25010701 :
25020101 : Raptor
25020102 :
25020201 : Treasure Hoarder Marksman
25020204 :
25030101 : Carmen
25030102 : null
25030103 : null
25030201 : Treasure Hoarder Gravedigger
25030301 : Treasure Hoarder Oarsman
25040101 : Boss
25040102 : null
25040103 : null
25050101 : Millelith Soldier
25050201 : Millelith Sergeant
25050301 : Shogunate Infantry
25050401 : Shogunate Infantry Captain
25050402 :
25050501 : Sangonomiya Cohort
25050502 :
25060101 :
25060102 :
25070101 :
25070201 : null
25070202 : null
25080101 : Ronin
25080201 : Ronin: Sanzoku
25080202 : null
25080301 : Ronin: Anbu
25080401 : Shogunate Samurai
25080402 : null
25090101 : Marionette General
25090102 : Marionette General: Wind Bunshin
25090103 : Marionette General: Ice Bunshin
25090104 : Marionette General: Masked Bunshin
25090201 : Marionette General: Wind Bunshin (With Icon)
25090301 : Marionette General: Ice Bunshin (With Icon)
25090401 : Marionette General: Masked Bunshin (With Icon)
25100101 : Electro Kairagi
25100102 : null
25100201 : Pyro Kairagi
25100301 : Thunderwraith Kairagi
25100302 : null
25100401 : Flameghoul Kairagi
26010101 : Cryo Whopperflower
26010102 : Cryo Whopperflower (Dragonspine Event)
26010103 : Giant Cryo Whopperflower (2.3 Dragonspine Event)
26010104 :
26010201 : Pyro Whopperflower
26010301 : Electro Whopperflower
26020101 : Cryo Regisvine
26020102 : Cryo Regisvine (Dragonspine Event)
26020201 : Pyro Regisvine
26030101 : Geovishap Hatchling
26040101 : Geovishap: Hydro
26040102 : Geovishap: Pyro
26040103 : Geovishap: Cryo
26040104 : Geovishap: Electro
26040105 : Geovishap: Hydro (Mechanicus)
26050101 : Primo Geovishap: Hydro
26050201 : Primo Geovishap: Pyro
26050301 : Primo Geovishap: Cryo
26050401 : Primo Geovishap: Electro
26050501 : Primo Geovishap (Event)
26050601 : null
26050701 : null
26050702 : null
26050801 : null
26050802 : null
26050901 : null
26051001 : null
26051101 : null
26060101 : Electro Cicin
26060201 : Hydro Cicin
26060301 : Cryo Cicin
26080101 : null
26090101 : null
28010101 : Golden Crab
28010102 : Sun Crab
28010103 : Ocean Crab
28010104 : General Crab
28010105 : Pale Red Crab
28010106 : Crab
28010201 : Blue Horned Lizard
28010202 : Red Horned Lizard
28010203 : Green Horned Lizard
28010204 : Sunset Loach
28010205 : Golden Loach
28010206 : Sunny Loach
28010207 : Pith Lizard
28010301 : Frog
28010302 : Mud Frog
28010303 : Blue Frog
28010401 :
28010402 : null
28010403 :
28020101 : Snow Fox
28020102 : Crimson Fox
28020103 : Gifting Snow Fox
28020104 : Super-Gifting Snow Fox
28020105 : null
28020106 : null
28020201 : Squirrel
28020301 : Forest Boar
28020302 : Forest Piglet
28020303 : Snowboar
28020304 : Great Snowboar King
28020305 : Frozen Snowboar
28020306 : null
28020307 : null
28020308 : null
28020309 : null
28020401 : Northland Hound
28020402 : Forest-Patrol Hound
28020403 : Shiba
28020404 : Black-Back Hound
28020405 : Shiba
28020406 : Northland Hound (Dog Event Special, Extended LoS Range)
28020407 : null
28020408 : null
28020409 : null
28020410 : null
28020501 : Sapphire
28020502 : Jade-Eyed Cat
28020503 : Gray Snow Cat
28020504 : Northland Cat
28020505 : Tiger-Striped Cat
28020506 : Sheriff Cat
28020507 : Black Cat
28020508 : Sapphire
28020509 : Gray Snow Cat (Dog Event Special, Extended LoS Range)
28020510 : null
28020511 : null
28020512 : null
28020513 : null
28020601 : Snow Weasel
28020602 : Red-Tailed Weasel
28020603 : Boot Weasel
28020604 : Masked Weasel
28020605 : null
28020701 : Kitsune
28020702 : Kitsune (Dog Event Special, Extended LoS Range)
28020801 : Bake-Danuki
28020802 : null
28020803 : null
28020901 : Samurai Dog (Patrol)
28020902 : Samurai Dog (Combat)
28020903 : null
28030101 : Azure Crane
28030102 : Violet Ibis
28030201 : Brownwing Falcon
28030202 : Umbertail Falcon
28030203 : Lapis Glede
28030204 : Silkwhite Falcon
28030301 : White Pigeon
28030302 : Brightcrown Pigeon
28030303 : Graywing Pigeon
28030304 : Crimsonflank Pigeon
28030305 : Black King Pigeon
28030306 : Duck
28030307 : White Pigeon
28030308 : Brightcrown Pigeon
28030309 : Graywing Pigeon
28030310 : Crimsonflank Pigeon
28030311 : Black King Pigeon
28030401 : Crimson Finch
28030402 : Golden Finch
28030403 : Snow Finch
28030404 : Emerald Finch
28030405 : null
28030406 : null
28030407 : null
28030408 : null
28030409 : null
28030501 : Scarletbeak Duck
28030502 : Emerald Duck
28030503 : Golden Duck
28030504 : null
28040101 : Black-Back Bass
28040102 : Blue-Fin Bass
28040103 : Golden Bass
28040104 : Black-Back Bass
28040105 : Black-Back Bass
28040106 : Blue-Fin Bass
28040107 : Golden Bass
28040108 : null
28040201 : Medaka
28040202 : Glaze Medaka
28040203 : Sweet-Flower Medaka
28040204 : Aizen Medaka
28040205 : Dawncatcher
28040206 : Crystalfish
28040301 : Lunged Stickleback
28040302 : Betta
28040303 : Venomspine Fish
28040304 : Akai Maou
28040305 : Snowstrider
28040401 : Golden Koi
28040402 : Rusty Koi
28040501 : Brown Shirakodai
28040502 : Purple Shirakodai
28040503 : Tea-Colored Shirakodai
28040504 : Abiding Angelfish
28040505 : Raimei Angelfish
28040506 : Moonfin
28040601 : Pufferfish
28040602 : Bitter Pufferfish
28040701 : null
28040702 : null
28040703 : null
28050101 : Anemo Crystalfly
28050102 : Geo Crystalfly
28050103 : Cryo Crystalfly
28050104 : Electro Crystalfly
28050105 : null
28050201 : Amateur Weasel Thief
28050202 : Hoarder Weasel Thief
28050203 : Golden Weasel Thief
28050204 : null
28050211 : Amateur Weasel Thief
28050212 : Hoarder Weasel Thief
28050213 : Golden Weasel Thief
28050221 : null
28050222 : null
28050223 : null
28050301 : null
28210101 : Domestic Golden Crab
28210102 : Domestic Sun Crab
28210103 : Domestic Ocean Crab
28210104 : Domestic General Crab
28210105 : Domestic Pale Red Crab
28210201 : Domestic Blue Horned Lizard
28210202 : Domestic Red Horned Lizard
28210203 : Domestic Green Horned Lizard
28210204 : Domestic Sunset Loach
28210205 : Domestic Golden Loach
28210206 : Domestic Sunny Loach
28210207 : Domestic Marrow Lizard
28210301 : Domestic Frog
28210302 : Domestic Mud Frog
28210303 : Domestic Blue Frog
28210401 : Domestic Adorned Unagi
28210402 : null
28210403 : Domestic Red-Finned Unagi
28220101 : Domestic Snow Fox
28220102 : Domestic Crimson Fox
28220201 : Domestic Squirrel
28220301 : Domestic Forest Boar
28220303 : Domestic Snowboar
28220401 : Domestic Northland Hound
28220402 : Domestic Forest-Patrol Hound
28220403 : Domestic Shiba
28220404 : Domestic Black-Back Hound
28220501 : Domestic Sapphire
28220502 : Domestic Jade-Eyed Cat
28220503 : Domestic Gray Snow Cat
28220504 : Domestic Northland Cat
28220505 : Domestic Tiger-Striped Cat
28220506 : Domestic Sheriff Cat
28220601 : Domestic Snow Weasel
28220602 : Domestic Red-Tailed Weasel
28220603 : Domestic Boot Weasel
28220605 : null
28220701 : Domestic Kitsune
28220901 : Domestic Samurai Dog
28230101 : Domestic Azure Crane
28230102 : Domestic Violet Ibis
28230301 : Domestic White Pigeon
28230302 : Domestic Brightcrown Pigeon
28230303 : Domestic Graywing Pigeon
28230304 : Domestic Crimsonflank Pigeon
28230305 : Domestic Black King Pigeon
28230306 : Domestic Crow
28230401 : Domestic Crimson Finch
28230402 : Domestic Golden Finch
28230403 : Domestic Snow Finch
28230404 : Domestic Emerald Finch
28240201 : Domestic Medaka
28240202 : Domestic Glaze Medaka
28240203 : Domestic Sweet-Flower Medaka
28240204 : Domestic Aizen Medaka
28240205 : Domestic Dawncatcher
28240206 : Domestic Crystalfish
28240301 : Domestic Lunged Stickleback
28240302 : Domestic Betta
28240303 : Domestic Venomspine Fish
28240304 : Domestic Akai Maou
28240305 : Domestic Snowstrider
28240401 : Domestic Golden Koi
28240402 : Domestic Rusty Koi
28240501 : Domestic Brown Shirakodai
28240502 : Domestic Purple Shirakodai
28240503 : Domestic Tea-Colored Shirakodai
28240504 : Domestic Abiding Angelfish
28240505 : Domestic Raimei Angelfish
28240506 : Domestic Moonfin
28240601 : Domestic Pufferfish
28240602 : Domestic Bitter Pufferfish
28240701 : null
28240702 : null
28250101 : Domestic Anemo Crystalfly
28250102 : Domestic Geo Crystalfly
28250103 : Domestic Cryo Crystalfly
28250104 : Domestic Electro Crystalfly
28250105 : null
28250301 : null
29010101: Stormterror 29010101: Stormterror
29010102: Stormterror 29010102: Stormterror
29010103: Stormterror 29010103: Stormterror
29010104: Stormterror 29010104: Stormterror
29020101 : Boreas, Great Wolf King of the North 29020101: Lupus Boreas, Dominator of Wolves
29020102 : Andrius, Dominator of Wolves 29020102: Lupus Boreas, Dominator of Wolves
29030101 : Eleventh of the Fatui Harbingers - Tartaglia
29030102 : Delusion Unleashed - Childe
29030103: Childe 29030103: Childe
29030104 : Eleventh of the Fatui Harbingers - Tartaglia
29030105 : Delusion Unleashed - Childe
29030106: Childe 29030106: Childe
29040101: Azhdaha 29040101: Azhdaha
29040102: Azhdaha 29040102: Azhdaha
29040103: Azhdaha 29040103: Azhdaha
29040104: Azhdaha 29040104: Azhdaha
29040111: Azhdaha 29040111: Azhdaha
29050101 : Signora 29050102: La Signora
29050102 : Crimson Witch of Embers 29050104: La Signora
29050103 : Signora 29060202: Magatsu Mitake Narukami no Mikoto
29050104 : Crimson Witch of Embers 29060203: Magatsu Mitake Narukami no Mikoto
29060101 : Raiden Shogun 20020101: Eye of the Storm
29060102 : Raiden Ei 20040101: Electro Hypostasis
29060201 : null 20040102: Electro Hypostasis
29060202 : null 20040201: Anemo Hypostasis
29060203 : null 20040202: Anemo Hypostasis
20040301: Geo Hypostasis
20040302: Geo Hypostasis
20040401: Hydro Hypostasis
20040501: Cryo Hypostasis
20040601: Pyro Hypostasis
20010501: Electro Slime
20010601: Large Electro Slime
20010604: Large Electro Slime
20010701: Mutant Electro Slime
20010702: Mutant Electro Slime
20010801: Cryo Slime
20010802: Cryo Slime
20010901: Large Cryo Slime
20010902: Large Cryo Slime
20010904: Large Cryo Slime
20011001: Hydro Slime
20011101: Large Hydro Slime
20011103: Large Hydro Slime
20011601: Hydro Hypostasis Summon
20011701: Hydro Hypostasis Summon
20011801: Hydro Hypostasis Summon
20011901: Hydro Hypostasis Summon
20050101: Oceanid
20050102: Oceanid
20050201: Hydro Mimic Boar
20050202: Hydro Mimic Boar
20050203: Hydro Mimic Boar
20050301: Hydro Mimic Crane
20050302: Hydro Mimic Crane
20050401: Hydro Mimic Crab
20050402: Hydro Mimic Crab
20050403: Hydro Mimic Crab
20050501: Hydro Mimic Finch
20050502: Hydro Mimic Finch
20050601: Hydro Mimic Mallard
20050602: Hydro Mimic Mallard
20050603: Hydro Mimic Mallard
20050701: Hydro Mimic Ferret
20050702: Hydro Mimic Ferret
20050703: Hydro Mimic Ferret
20050801: Hydro Mimic Frog
20050802: Hydro Mimic Frog
20050901: Hydro Mimic Raptor
20070101: Thunder Manifestation
21010201: Hilichurl Fighter
21010301: Wooden Shield Hilichurl Guard
21010401: Hilichurl Shooter
21010402: Hilichurl Shooter
21010501: Pyro Hilichurl Shooter
21010502: Pyro Hilichurl Shooter
21010601: Hilichurl Grenadier
21010603: Hilichurl Grenadier
21010701: Hilichurl Berserker
21010901: Cryo Hilichurl Shooter
21010902: Cryo Hilichurl Shooter
21011001: Electro Hilichurl Shooter
21011002: Electro Hilichurl Shooter
21011201: Rock Shield Hilichurl Guard
21011301: Cryo Hilichurl Grenadier
21011302: Cryo Hilichurl Grenadier
21011401: Ice Shield Hilichurl Guard
21011403: Ice Shield Hilichurl Guard
21011501: Unusual Hilichurl
21011601: Electro Hilichurl Grenadier
21011602: Electro Hilichurl Grenadier
20011201: Pyro Slime
20011202: Pyro Slime
20011301: Large Pyro Slime
20011304: Large Pyro Slime
20011401: Geo Slime
20011501: Large Geo Slime
20011502: Large Geo Slime
22010101: Pyro Abyss Mage
22010102: Pyro Abyss Mage
22010103: Pyro Abyss Mage
22010104: Pyro Abyss Mage
22010201: Cryo Abyss Mage
22010202: Cryo Abyss Mage
22010203: Cryo Abyss Mage
22010204: Cryo Abyss Mage
22010301: Hydro Abyss Mage
22010302: Hydro Abyss Mage
22010303: Hydro Abyss Mage
22010304: Hydro Abyss Mage
22010401: Electro Abyss Mage
22010403: Electro Abyss Mage
22010404: Electro Abyss Mage
22020101: Abyss Herald: Wicked Torrents
22020102: Abyss Herald: Wicked Torrents
22030101: Abyss Lector: Violet Lightning
22030102: Abyss Lector: Violet Lightning
22030201: Abyss Lector: Fathomless Flames
22030202: Abyss Lector: Fathomless Flames
22040101: Rockfond Rifthound Whelp
22040201: Thundercraven Rifthound Whelp
22050101: Rockfond Rifthound
22050201: Thundercraven Rifthound
22060101: Golden Wolflord
22070101: Shadowy Husk: Standard Bearer
22070102: Shadowy Husk: Standard Bearer
22070201: Shadowy Husk: Line Breaker
22070202: Shadowy Husk: Line Breaker
22070301: Shadowy Husk: Defender
22070302: Shadowy Husk: Defender
22080101: Black Serpent Knight: Windcutter
21030101: Hydro Samachurl
21030103: Hydro Samachurl
21030201: Dendro Samachurl
21030203: Dendro Samachurl
21030301: Anemo Samachurl
21030303: Anemo Samachurl
21030304: Anemo Samachurl
21030401: Geo Samachurl
21030402: Geo Samachurl
21030501: Cryo Samachurl
21030601: Electro Samachurl
21030603: Electro Samachurl
24010101: Ruin Guard
24010108: Ruin Guard
24010109: Ruin Guard
24010201: Ruin Hunter
24010301: Ruin Grader
24010303: Ruin Grader
24010401: Ruin Serpent
24020101: Ruin Cruiser
24020102: Ruin Cruiser
24020103: Ruin Cruiser
24020201: Ruin Destroyer
24020202: Ruin Destroyer
24020203: Ruin Destroyer
24020301: Ruin Defender
24020302: Ruin Defender
24020303: Ruin Defender
24020401: Ruin Scout
24020402: Ruin Scout
24020403: Ruin Scout
24021101: Perpetual Mechanical Array
24021102: Perpetual Mechanical Array
23010101: Fatui Skirmisher - Cryogunner Legionnaire
23010201: Fatui Skirmisher - Hydrogunner Legionnaire
23010301: Fatui Skirmisher - Electrohammer Vanguard
23010401: Fatui Skirmisher - Geochanter Bracer
23010501: Fatui Skirmisher - Anemoboxer Vanguard
23010601: Fatui Skirmisher - Pyroslinger Bracer
23020101: Fatui Pyro Agent
23020102: Fatui Pyro Agent
23030101: Fatui Electro Cicin Mage
23030102: Fatui Electro Cicin Mage
23040101: Fatui Cryo Cicin Mage
23040102: Fatui Cryo Cicin Mage
23050101: Mirror Maiden
25010101: Treasure Hoarders - Liuliu
25010102: Treasure Hoarders - Liuliu
25010103: Treasure Hoarders - Liuliu
25010104: Treasure Hoarders - Liuliu
25010105: Treasure Hoarders - Liuliu
25010106: Treasure Hoarders - Liuliu
25010201: Treasure Hoarders - Scout
25010203: Treasure Hoarders - Scout
25010204: Treasure Hoarders - Scout
25010205: Treasure Hoarders - Scout
25010206: Treasure Hoarders - Scout
25010207: Treasure Hoarders - Scout
25010208: Treasure Hoarders - Scout
25010301: Treasure Hoarders: Pyro Potioneer
25010302: Treasure Hoarders: Pyro Potioneer
25010401: Treasure Hoarders: Hydro Potioneer
25010501: Treasure Hoarders: Electro Potioneer
25010601: Treasure Hoarders: Cryo Potioneer
25010701: Treasure Hoarders: Handyman
25020101: Treasure Hoarders - Raptor
25020102: Treasure Hoarders - Raptor
25020201: Treasure Hoarders - Marksman
25020204: Treasure Hoarders - Marksman
25030101: Treasure Hoarders - Carmen
25030102: Treasure Hoarders - Carmen
25030103: Treasure Hoarders - Carmen
25030201: Treasure Hoarders: Gravedigger
25030301: Treasure Hoarders - Seaman
25040101: Treasure Hoarders - Boss
25040102: Treasure Hoarders - Boss
25040103: Treasure Hoarders - Boss
25050101: Millelith Soldier
25050201: Millelith Sergeant
25050301: Shogunate Infantry
25050401: Shogunate Infantry Captain
25050402: Shogunate Infantry Captain
25050501: Sangonomiya Cohort
25050502: Sangonomiya Cohort
25060101: Treasure Hoarders - Pugilist
25060102: Treasure Hoarders - Pugilist
25070101: Treasure Hoarders - Crusher
25070201: Treasure Hoarder: Wallenstein
25070202: Treasure Hoarder: Wallenstein
25080101: Nobushi: Jintouban
25080201: Nobushi: Hitsukeban
25080202: Nobushi: Hitsukeban
25080301: Nobushi: Kikouban
25080401: Yoriki Samurai
25080402: Yoriki Samurai
25090101: Maguu Kenki
25090102: Maguu Kenki
25090103: Maguu Kenki
25090104: Maguu Kenki
25090201: Maguu Kenki: Lone Gale
25090301: Maguu Kenki: Galloping Frost
25090401: Maguu Kenki: Mask of Terror
25100101: Kairagi: Dancing Thunder
25100301: Ochimusha: Ensorcelled Thunder
25100201: Kairagi: Fiery Might
25100401: Ochimusha: Cankered Flame
25100102: Kairagi: Dancing Thunder
25100302: Ochimusha: Ensorcelled Thunder
26010101: Cryo Whopperflower
26010102: Cryo Whopperflower
26010103: Cryo Whopperflower
26010104: Cryo Whopperflower
26010201: Pyro Whopperflower
26010301: Electro Whopperflower
26020101: Cryo Regisvine
26020102: Cryo Regisvine
26020201: Pyro Regisvine
26030101: Geovishap Hatchling
26040101: Geovishap
26040102: Geovishap
26040103: Geovishap
26040104: Geovishap
26050101: Primo Geovishap
26050201: Primo Geovishap
26050301: Primo Geovishap
26050401: Primo Geovishap
26050501: Primo Geovishap
26050601: Primordial Bathysmal Vishap
26050901: Primordial Bathysmal Vishap
26050701: Rimebiter Bathysmal Vishap
26051001: Rimebiter Bathysmal Vishap
26050702: Rimebiter Bathysmal Vishap
26050801: Bolteater Bathysmal Vishap
26051101: Bolteater Bathysmal Vishap
26050802: Bolteater Bathysmal Vishap
26060101: Electro Cicin
26060201: Hydro Cicin
26060301: Cryo Cicin
26080101: Beisht
26090101: Floating Hydro Fungus
20060101: Hydro Specter
20060201: Geo Specter
20060301: Anemo Specter
20060401: Cryo Specter
20060501: Electro Specter
20060601: Pyro Specter
21010102: Hilichurl
21020102: Wooden Shieldwall Mitachurl
21020203: Blazing Axe Mitachurl
21020702: Crackling Axe Mitachurl
21020302: Rock Shieldwall Mitachurl
21020402: Frostarm Lawachurl
21020502: Stonehide Lawachurl
21020802: Thunderhelm Lawachurl
21020602: Ice Shieldwall Mitachurl
20010302: Anemo Slime
20010402: Large Anemo Slime
20010502: Electro Slime
20010602: Large Electro Slime
20010703: Mutant Electro Slime
20010803: Cryo Slime
20010903: Large Cryo Slime
20011002: Hydro Slime
20011102: Large Hydro Slime
21010302: Wooden Shield Hilichurl Guard
21010702: Hilichurl Berserker
21011202: Rock Shield Hilichurl Guard
21011402: Ice Shield Hilichurl Guard
20011203: Pyro Slime
20011302: Large Pyro Slime
20011402: Geo Slime
20011503: Large Geo Slime
22010105: Pyro Abyss Mage
22010205: Cryo Abyss Mage
22010305: Hydro Abyss Mage
22010402: Electro Abyss Mage
21030102: Hydro Samachurl
21030202: Dendro Samachurl
21030302: Anemo Samachurl
21030403: Geo Samachurl
21030502: Cryo Samachurl
21030602: Electro Samachurl
24010102: Ruin Guard
24010202: Ruin Hunter
24010302: Ruin Grader
26040105: Geovishap

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -1,142 +1,145 @@
11101: 无锋剑 11101: Dull Blade
11201: 银剑 11201: Silver Sword
11301: 冷刃 11301: Cool Steel
11302: 黎明神剑 11302: Harbinger of Dawn
11303: 旅行剑 11303: Traveler's Handy Sword
11304: 暗铁剑 11304: Dark Iron Sword
11305: 吃虎鱼刀 11305: Fillet Blade
11306: 飞天御剑 11306: Skyrider Sword
11401: 西风剑 11401: Favonius Sword
11402: 笛剑 11402: The Flute
11403: 祭礼剑 11403: Sacrificial Sword
11404: 宗室长剑 11404: Royal Longsword
11405: 匣里龙吟 11405: Lion's Roar
11406: 试作斩岩 11406: Prototype Rancour
11407: 铁蜂刺 11407: Iron Sting
11408: 黑岩长剑 11408: Blackcliff Longsword
11409: 黑剑 11409: The Black Sword
11410: 暗巷闪光 11410: The Alley Flash
11412: 降临之剑 11412: Sword of Descension
11413: 腐殖之剑 11413: Festering Desire
11414: 天目影打刀 11414: Amenoma Kageuchi
11415: 辰砂之纺锤 11415: Cinnabar Spindle
11501: 风鹰剑 11501: Aquila Favonia
11502: 天空之刃 11502: Skyward Blade
11503: 苍古自由之誓 11503: Freedom-Sworn
11504: 斫峰之刃 11504: Summit Shaper
11505: 磐岩结绿 11505: Primordial Jade Cutter
11509: 雾切之回光 11506: Primordial Jade Cutter
11510: 波乱月白经津 11507: One Side
12101: 训练大剑 11509: Mistsplitter Reforged
12201: 佣兵重剑 11510: Haran Geppaku Futsu
12301: 铁影阔剑 12101: Waster Greatsword
12302: 沐浴龙血的剑 12201: Old Merc's Pal
12303: 白铁大剑 12301: Ferrous Shadow
12304: 石英大剑 12302: Bloodtainted Greatsword
12305: 以理服人 12303: White Iron Greatsword
12306: 飞天大御剑 12304: Quartz
12401: 西风大剑 12305: Debate Club
12402: 钟剑 12306: Skyrider Greatsword
12403: 祭礼大剑 12401: Favonius Greatsword
12404: 宗室大剑 12402: The Bell
12405: 雨裁 12403: Sacrificial Greatsword
12406: 试作古华 12404: Royal Greatsword
12407: 白影剑 12405: Rainslasher
12408: 黑岩斩刀 12406: Prototype Archaic
12409: 螭骨剑 12407: Whiteblind
12410: 千岩古剑 12408: Blackcliff Slasher
12411: 雪葬的星银 12409: Serpent Spine
12412: 衔珠海皇 12410: Lithic Blade
12414: 桂木斩长正 12411: Snow-Tombed Starsilver
12416: 恶王丸 12412: Luxurious Sea-Lord
12501: 天空之傲 12414: Katsuragikiri Nagamasa
12502: 狼的末路 12416: Akuoumaru
12503: 松籁响起之时 12501: Skyward Pride
12504: 无工之剑 12502: Wolf's Gravestone
12510: 赤角石溃杵 12503: Song of Broken Pines
13101: 新手长枪 12504: The Unforged
13201: 铁尖枪 12505: Primordial Jade Greatsword
13301: 白缨枪 12506: The Other Side
13302: 钺矛 12510: Redhorn Stonethresher
13303: 黑缨枪 13101: Beginner's Protector
13304: 「旗杆」 13201: Iron Point
13401: 匣里灭辰 13301: White Tassel
13402: 试作星镰 13302: Halberd
13403: 流月针 13303: Black Tassel
13404: 黑岩刺枪 13304: The Flagstaff
13405: 决斗之枪 13401: Dragon's Bane
13406: 千岩长枪 13402: Prototype Starglitter
13407: 西风长枪 13403: Crescent Pike
13408: 宗室猎枪 13404: Blackcliff Pole
13409: 龙脊长枪 13405: Deathmatch
13414: 喜多院十文字 13406: Lithic Spear
13415: 「渔获」 13407: Favonius Lance
13416: 断浪长鳍 13408: Royal Spear
13501: 护摩之杖 13409: Dragonspine Spear
13502: 天空之脊 13414: Kitain Cross Spear
13504: 贯虹之槊 13415: "The Catch"
13505: 和璞鸢 13416: Wavebreaker's Fin
13507: 息灾 13501: Staff of Homa
13509: 薙草之稻光 13502: Skyward Spine
14101: 学徒笔记 13504: Vortex Vanquisher
14201: 口袋魔导书 13505: Primordial Jade Winged-Spear
14301: 魔导绪论 13506: Deicide
14302: 讨龙英杰谭 13507: Calamity Queller
14303: 异世界行记 13509: Engulfing Lightning
14304: 翡玉法球 14101: Apprentice's Notes
14305: 甲级宝珏 14201: Pocket Grimoire
14306: 琥珀玥 14301: Magic Guide
14401: 西风秘典 14302: Thrilling Tales of Dragon Slayers
14402: 流浪乐章 14303: Otherworldly Story
14403: 祭礼残章 14304: Emerald Orb
14404: 宗室秘法录 14305: Twin Nephrite
14405: 匣里日月 14306: Amber Bead
14406: 试作金珀 14401: Favonius Codex
14407: 万国诸海图谱 14402: The Widsith
14408: 黑岩绯玉 14403: Sacrificial Fragments
14409: 昭心 14404: Royal Grimoire
14410: 暗巷的酒与诗 14405: Solar Pearl
14412: 忍冬之果 14406: Prototype Amber
14413: 嘟嘟可故事集 14407: Mappa Mare
14414: 白辰之环 14408: Blackcliff Agate
14415: 证誓之明瞳 14409: Eye of Perception
14501: 天空之卷 14410: Wine and Song
14502: 四风原典 14412: Frostbearer
14504: 尘世之锁 14413: Dodoco Tales
14506: 不灭月华 14414: Hakushin Ring
14509: 神乐之真意 14415: Oathsworn Eye
15101: 猎弓 14501: Skyward Atlas
15201: 历练的猎弓 14502: Lost Prayer to the Sacred Winds
15301: 鸦羽弓 14503: Lost Ballade
15302: 神射手之誓 14504: Memory of Dust
15303: 反曲弓 14505: Primordial Jade Regalia
15304: 弹弓 14506: Everlasting Moonglow
15305: 信使 14509: Kagura's Verity
15306: 黑檀弓 15101: Hunter's Bow
15401: 西风猎弓 15201: Seasoned Hunter's Bow
15402: 绝弦 15301: Raven Bow
15403: 祭礼弓 15302: Sharpshooter's Oath
15404: 宗室长弓 15303: Recurve Bow
15405: 弓藏 15304: Slingshot
15406: 试作澹月 15305: Messenger
15407: 钢轮弓 15306: Ebony Bow
15408: 黑岩战弓 15401: Favonius Warbow
15409: 苍翠猎弓 15402: The Stringless
15410: 暗巷猎手 15403: Sacrificial Bow
15412: 幽夜华尔兹 15404: Royal Bow
15413: 风花之颂 15405: Rust
15414: 破魔之弓 15406: Prototype Crescent
15415: 掠食者 15407: Compound Bow
15416: 曚云之月 15408: Blackcliff Warbow
15501: 天空之翼 15409: The Viridescent Hunt
15502: 阿莫斯之弓 15410: Alley Hunter
15503: 终末嗟叹之诗 15412: Mitternachts Waltz
15507: 冬极白星 15413: Windblume Ode
15509: 飞雷之弦振 15414: Hamayumi
20001: (test)竿测试 15415: Predator
10002: (test)穿模测试 15416: Mouun's Moon
10003: (test)穿模测试 15501: Skyward Harp
10004: (test)穿模测试 15502: Amos' Bow
10005: (test)穿模测试 15503: Elegy for the End
10006: (test)穿模测试 15504: Kunwu's Wyrmbane
10008: (test)穿模测试 15505: Primordial Jade Vista
15506: Mirror Breaker
15507: Polar Star
15509: Thundering Pulse

View File

@@ -41,7 +41,7 @@
私信 私信
/say <player> <message> /say <player> <message>
进来吧你 进来吧你
/coop <playerId> <target playerId> /coop @targetId
自杀 自杀
/killcharacter /killcharacter
暗杀 暗杀
@@ -50,3 +50,5 @@
/list uid /list uid
重载服务配置 重载服务配置
/reload /reload
清场
/killall

File diff suppressed because it is too large Load Diff

View File

@@ -1,4 +1,22 @@
using System; /**
* Grasscutter Tools
* Copyright (C) 2022 jie65535
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published
* by the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
**/
using System;
using System.Net; using System.Net;
using System.Net.Http; using System.Net.Http;
using System.Text; using System.Text;