-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dc8d808
commit b2a0d42
Showing
20 changed files
with
100 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -127,6 +127,7 @@ | |
"TOZERO", | ||
"Uiautomator", | ||
"uninit", | ||
"Violetgrass", | ||
"vkcode", | ||
"webio", | ||
"withalpha", | ||
|
Submodule TeyvatMovePath
updated
3 files
+2,664 −0 | LLDV2P120230507182049i0.json | |
+1,854 −0 | LLDV2P120230507182352i0.json | |
+8,276 −0 | SweatFlowerV2P120230507180640i0.json |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"introduction": { | ||
"en_US": " Automatic collect sweat flower.", | ||
"zh_CN": "自动采集甜甜花。" | ||
}, | ||
"missions": [ | ||
"MissionSweatFlower2" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
"introduction": { | ||
"en_US": " Automatic collect violetgrass. 4 in total.", | ||
"zh_CN": "自动采集琉璃袋。 共4个。" | ||
}, | ||
"missions": [ | ||
"MissionVioletgrass1" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from source.mission.template.mission_just_collect import MissionJustCollect | ||
|
||
class MissionSweatFlower2(MissionJustCollect): | ||
def __init__(self): | ||
super().__init__("SweatFlowerV2P120230507180640i0", "MissionSweatFlower2") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from source.mission.template.mission_just_collect import MissionJustCollect | ||
|
||
class MissionVioletgrass1(MissionJustCollect): | ||
def __init__(self): | ||
super().__init__("LLDV2P120230507182352i0", "MissionVioletgrass1") |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
from source.mission.mission_template import MissionExecutor | ||
|
||
class MissionJustCollect(MissionExecutor): | ||
def __init__(self, filename, name): | ||
super().__init__(is_CFCF=True,is_PUO=True,is_TMCF=True) | ||
self.filename = filename | ||
self.setName(name) | ||
|
||
def exec_mission(self): | ||
self.start_pickup()# SweatFlower167910289922 SweatFlowerV2P120230507180640i0 | ||
self.move_along(self.filename, is_tp=True, is_precise_arrival=False) | ||
self.stop_pickup() | ||
# self.collect(MODE="AUTO",pickup_points=[[71, -2205],[65,-2230]]) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters