-
Notifications
You must be signed in to change notification settings - Fork 2
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
ed2e775
commit d420f3f
Showing
6 changed files
with
66 additions
and
7 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
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,15 @@ | ||
from ._base import _BaseGenericCharacter | ||
from ..games import register_game | ||
|
||
|
||
class Character(_BaseGenericCharacter): | ||
__game_name__ = 'eiyuudensetsusennokiseki' | ||
__official_name__ = 'Eiyuu Densetsu: Sen no Kiseki' | ||
__game_keywords__ = ['Eiyuu Densetsu: Sen no Kiseki', 'Eyiyuu Densetsu: Sen No Kiseki', 'Sen No Kiseki', | ||
'The Legend Of Heroes: Trails Of Cold Steel', '英雄伝説 閃の軌跡', | ||
'Ying Xiong Chuan Shuo Shan noGui Ji'] | ||
__pixiv_keyword__ = '閃の軌跡' | ||
__pixiv_suffix__ = None | ||
|
||
|
||
register_game(Character) |
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,14 @@ | ||
from ._base import _BaseGenericCharacter | ||
from ..games import register_game | ||
|
||
|
||
class Character(_BaseGenericCharacter): | ||
__game_name__ = 'princessconnect' | ||
__official_name__ = 'Princess Connect' | ||
__game_keywords__ = ['Princess Connect', 'Princess Connect Re: Dive', 'プリンセスコネクト', 'purinsesukonekuto'] | ||
__pixiv_keyword__ = 'プリンセスコネクト!Re:Dive' | ||
__pixiv_suffix__ = 'プリンセスコネクト!Re:Dive' | ||
|
||
|
||
register_game(Character) | ||
|
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,14 @@ | ||
from ._base import ZerochanBasedIndexer | ||
|
||
|
||
class Indexer(ZerochanBasedIndexer): | ||
__game_name__ = 'eiyuudensetsusennokiseki' | ||
__official_name__ = 'Eiyuu Densetsu: Sen no Kiseki' | ||
__root_website__ = 'https://zerochan.net/Eiyuu+Densetsu%3A+Sen+no+Kiseki' | ||
|
||
|
||
INDEXER = Indexer() | ||
|
||
if __name__ == '__main__': | ||
INDEXER.get_cli()() | ||
|
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,14 @@ | ||
from ._base import ZerochanBasedIndexer | ||
|
||
|
||
class Indexer(ZerochanBasedIndexer): | ||
__game_name__ = 'princessconnect' | ||
__official_name__ = 'Princess Connect' | ||
__root_website__ = 'https://zerochan.net/Princess+Connect' | ||
|
||
|
||
INDEXER = Indexer() | ||
|
||
if __name__ == '__main__': | ||
INDEXER.get_cli()() | ||
|