Skip to content

Commit 1fdab8b

Browse files
committed
fix: moved saturn's blaster ability from magic to ranged
fix: added missing enchantment to "Sparks of Prometheus" feat: added 12th anniversary naginata feat: added 12th anniversary trait chore: bumped the version to 2.0.1
1 parent bf22612 commit 1fdab8b

File tree

6 files changed

+18
-8
lines changed

6 files changed

+18
-8
lines changed

assets/item_database/magic.toml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -154,12 +154,6 @@ description = "Appears in game's files and has no known use"
154154
traits = ["defunct"]
155155
override_type = "magic"
156156

157-
[ABILITY_SATURN_BLASTER]
158-
name = "Saturn's Blaster"
159-
description = "used by a \"Player\" entity as a weapon"
160-
traits = ["defunct"]
161-
override_type = "ranged"
162-
163157
[ABILITY_SPORE]
164158
name = "Spore"
165159
description = "Appears in game's files and has no known use"

assets/item_database/ranged.toml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -140,6 +140,12 @@ traits = [ "defunct",]
140140
name = "Unknown Ranged Weapon"
141141
traits = [ "defunct",]
142142

143+
[ABILITY_SATURN_BLASTER]
144+
name = "Saturn's Blaster"
145+
description = "used by a \"Player\" entity as a weapon"
146+
traits = ["defunct"]
147+
override_type = "ranged"
148+
143149
[RANGED_HW15_SKULL]
144150
name = "Flame Skull"
145151
traits = [ "hw15",]

assets/item_database/weapon.toml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -643,6 +643,7 @@ enchantments = [ "weakness",]
643643
[WEAPON_KNUCKLES_SPARKS_OF_PROMETHEUS_25]
644644
name = "Sparks of Prometheus"
645645
traits = [ "offer",]
646+
enchantments = ["time_bomb"]
646647

647648
[WEAPON_FUTURIST_25]
648649
name = "Hadronic Decay"
@@ -903,6 +904,12 @@ description = "Victorious Jian is the 2021 Chinese New Year special weapon in Sh
903904
traits = [ "chny21", "vd21",]
904905
enchantments = [ "time_bomb",]
905906

907+
[WEAPON_NAGINATA_GIFT_25]
908+
name = "Curse of Teramori"
909+
description = "Anniversary 12th gift"
910+
traits = [ "gift", "anniversary12",]
911+
enchantments = ["bloodrage"]
912+
906913
[WEAPON_SHADOW_DAISHO]
907914
name = "Hero's Will"
908915
description = "Hero's Will is a weapon obtained as a 10th anniversary gift by Nekki in Shadow Fight 2. Players who logged in from September 20th, 2023 to an unspecified date received this weapon along with 200 gems. This weapon has same moveset as the other Daisho weapons."

assets/traits.toml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ color = "0xFF3F7D58"
4242
display = "10th Anniversary"
4343
color = "0xFF254D70"
4444

45+
[anniversary12]
46+
display = "12th Anniversary"
47+
color = "0xFF254D70"
48+
4549
[ram_navami21]
4650
display = "Ram Navami 2021"
4751
color = "0xFFFFE082"

lib/logic/item_database.dart

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ class ItemDatabase {
3939
static Future<Iterable<ItemTrait>> loadTraits() async {
4040
final tomlContent = await rootBundle.loadString("assets/traits.toml");
4141
final tomlMap = TomlDocument.parse(tomlContent).toMap();
42-
print(tomlMap);
4342
return tomlMap.entries.map((e) =>
4443
ItemTrait(e.key, e.value["display"], int.parse(e.value["color"])));
4544
}

pubspec.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: stalker
22
description: "An android application to view and optionally modify the save files of Shadow Fight 2 game"
33
publish_to: 'none'
44

5-
version: 2.0.0
5+
version: 2.0.1
66

77
environment:
88
sdk: ^3.5.4

0 commit comments

Comments
 (0)