108 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			108 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from . import BlasphemousTestBase
 | |
| 
 | |
| 
 | |
| class TestBrotherhoodEasy(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "brotherhood",
 | |
|         "difficulty": "easy"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestBrotherhoodNormal(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "brotherhood",
 | |
|         "difficulty": "normal"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestBrotherhoodHard(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "brotherhood",
 | |
|         "difficulty": "hard"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestAlberoEasy(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "albero",
 | |
|         "difficulty": "easy"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestAlberoNormal(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "albero",
 | |
|         "difficulty": "normal"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestAlberoHard(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "albero",
 | |
|         "difficulty": "hard"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestConventEasy(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "convent",
 | |
|         "difficulty": "easy"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestConventNormal(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "convent",
 | |
|         "difficulty": "normal"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestConventHard(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "convent",
 | |
|         "difficulty": "hard"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestGrievanceEasy(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "grievance",
 | |
|         "difficulty": "easy"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestGrievanceNormal(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "grievance",
 | |
|         "difficulty": "normal"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestGrievanceHard(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "grievance",
 | |
|         "difficulty": "hard"
 | |
|     }
 | |
| 
 | |
| 
 | |
| # knot of the three words, rooftops, and mourning and havoc can't be selected on easy or normal. hard only
 | |
| class TestKnotOfWordsHard(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "knot_of_words",
 | |
|         "difficulty": "hard"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestRooftopsHard(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "rooftops",
 | |
|         "difficulty": "hard"
 | |
|     }
 | |
| 
 | |
| 
 | |
| class TestMourningHavocHard(BlasphemousTestBase):
 | |
|     options = {
 | |
|         "starting_location": "mourning_havoc",
 | |
|         "difficulty": "hard"
 | |
|     }
 | 
