Skip to content

Commit

Permalink
Merge pull request #2307 from planetarium/feature/create-avatar-testbed
Browse files Browse the repository at this point in the history
Update testbed code Create Avatar for test
  • Loading branch information
tyrosine1153 authored Dec 18, 2023
2 parents f1d89f5 + 2d5def6 commit 0237a58
Show file tree
Hide file tree
Showing 4 changed files with 343 additions and 55 deletions.
306 changes: 285 additions & 21 deletions Lib9c.DevExtensions/Data/TestbedCreateAvatar.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,19 @@
{
"BlockDifficulty": 200000,
"TradableMaterialCount": 9999,
"MaterialCount": 10,
"FoodCount": 10,
"Level": 300,
"TradableMaterialCount": 6000,
"MaterialCount": 5000,
"RuneStoneCount": 4000,
"SoulStoneCount": 3000,
"AddPet": false,
"FoodCount": 50,
"FullOptionEquipmentRecipeIds": [
21,
62,
103,
128,
148,
152
],
"CustomEquipmentItems": [
{
"ID": 10143001,
Expand Down Expand Up @@ -32,45 +43,298 @@
]
},
{
"ID": 10110000,
"Level": 1,
"ID": 10114000,
"Level": 4,
"OptionIds": [
7
37,
38,
39,
40
]
},
{
"ID": 10110000,
"Level": 1,
"ID": 10214000,
"Level": 4,
"OptionIds": [
11
389,
390,
391,
392
]
},
{
"ID": 10110000,
"Level": 1,
"ID": 10331000,
"Level": 4,
"OptionIds": [
14
796,
797,
798,
799
]
},
{
"ID": 10240000,
"Level": 1,
"ID": 10431000,
"Level": 4,
"OptionIds": [
14
1016,
1017,
1018,
1019
]
},
{
"ID": 10240000,
"Level": 1,
"ID": 10513000,
"Level": 4,
"OptionIds": [
11
1170,
1171,
1172,
1173
]
},
{
"ID": 10513000,
"Level": 4,
"OptionIds": [
1167,
1168,
1169
]
},
{
"ID": 10133000,
"Level": 4,
"OptionIds": [
114,
115,
116,
117
]
},
{
"ID": 10224000,
"Level": 4,
"OptionIds": [
433,
434,
435,
436
]
},
{
"ID": 10323000,
"Level": 4,
"OptionIds": [
774,
775,
776,
777
]
},
{
"ID": 10423000,
"Level": 4,
"OptionIds": [
994,
995,
996,
997
]
},
{
"ID": 10514000,
"Level": 4,
"OptionIds": [
1181,
1182,
1183,
1184
]
},
{
"ID": 10514000,
"Level": 4,
"OptionIds": [
1178,
1179,
1180
]
},
{
"ID": 10133001,
"Level": 7,
"OptionIds": [
158,
159,
160,
161
]
},
{
"ID": 10233001,
"Level": 7,
"OptionIds": [
510,
511,
512,
513
]
},
{
"ID": 10333000,
"Level": 7,
"OptionIds": [
818,
819,
820,
821
]
},
{
"ID": 10433000,
"Level": 7,
"OptionIds": [
1038,
1039,
1040,
1041
]
},
{
"ID": 10533000,
"Level": 7,
"OptionIds": [
1258,
1259,
1260,
1261
]
},
{
"ID": 10533000,
"Level": 7,
"OptionIds": [
1255,
1256,
1257
]
},
{
"ID": 10141000,
"Level": 4,
"OptionIds": [
1014100021,
1014100022,
1014100023,
1014100024
]
},
{
"ID": 10234000,
"Level": 10,
"OptionIds": [
521,
522,
523,
524
]
},
{
"ID": 10343000,
"Level": 10,
"OptionIds": [
862,
863,
864,
865
]
},
{
"ID": 10451000,
"Level": 4,
"OptionIds": [
1045100021,
1045100022,
1045100023,
1045100024
]
},
{
"ID": 10541000,
"Level": 4,
"OptionIds": [
1054100021,
1054100022,
1054100023,
1054100024
]
},
{
"ID": 10541000,
"Level": 4,
"OptionIds": [
1054100011,
1054100012,
1054100013
]
},
{
"ID": 10140000,
"Level": 12,
"OptionIds": [
1014000021,
1014000022,
1014000023,
1014000024
]
},
{
"ID": 10240000,
"Level": 1,
"Level": 12,
"OptionIds": [
1024000021,
1024000022,
1024000023,
1024000024
]
},
{
"ID": 10350000,
"Level": 12,
"OptionIds": [
1035000021,
1035000022,
1035000023,
1035000024
]
},
{
"ID": 10450000,
"Level": 12,
"OptionIds": [
1045000021,
1045000022,
1045000023,
1045000024
]
},
{
"ID": 10540000,
"Level": 12,
"OptionIds": [
1054000021,
1054000022,
1054000023,
1054000024
]
},
{
"ID": 10540000,
"Level": 12,
"OptionIds": [
7
1054000011,
1054000012,
1054000013
]
}
]
Expand Down
6 changes: 5 additions & 1 deletion Lib9c.DevExtensions/Model/TestbedCreateAvatar.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,14 @@ namespace Lib9c.DevExtensions.Model
[Serializable]
public class TestbedCreateAvatar : BaseTestbedModel
{
public long BlockDifficulty;
public int Level;
public int TradableMaterialCount;
public int MaterialCount;
public int RuneStoneCount;
public int SoulStoneCount;
public bool AddPet;
public int FoodCount;
public int[] FullOptionEquipmentRecipeIds;
public CustomEquipmentItem[] CustomEquipmentItems;
}

Expand Down
Loading

0 comments on commit 0237a58

Please sign in to comment.