|
| 1 | +"""Database of skipped cutscenes.""" |
| 2 | + |
| 3 | +from BuildEnums import Maps |
| 4 | + |
| 5 | +skipped = { |
| 6 | + Maps.JapesMountain: [0, 1, 2], |
| 7 | + Maps.Japes: [2, 3, 4, 5, 7, 8, 9, 10, 11, 15, 16, 17, 19, 20, 26], |
| 8 | + Maps.JapesDillo: [2], |
| 9 | + Maps.JapesShell: [0, 1], |
| 10 | + Maps.JapesPainting: [0, 1, 2], |
| 11 | + Maps.AztecTinyTemple: [0, 1, 3, 5, 7, 8, 9, 10, 12], |
| 12 | + Maps.Helm: [0, 1, 2], |
| 13 | + Maps.AztecLlamaTemple: [0, 1, 2, 4, 5, 6, 7, 8, 9], |
| 14 | + Maps.Factory: [0, 1, 2, 3, 4, 5, 10, 11, 12, 13, 14, 21, 22, 25, 26, 27, 28, 32, 33, 34, 35, 36, 45], |
| 15 | + Maps.FactoryPowerShed: [1], |
| 16 | + Maps.Galleon: [2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 25, 26, 27, 28, 32, 33, 34], |
| 17 | + Maps.JapesUnderground: [0, 1], |
| 18 | + Maps.Isles: [2, 3, 10, 11, 12, 13, 14, 15, 16, 20, 23], |
| 19 | + Maps.Aztec: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 18, 20, 22], |
| 20 | + Maps.Fungi: [1, 2, 4, 5, 6, 8, 13, 14, 16, 18, 23, 24, 25, 27, 32], |
| 21 | + Maps.GalleonLighthouse: [1], |
| 22 | + Maps.FungiAntHill: [0, 2], |
| 23 | + Maps.FungiMinecart: [0, 1, 3, 4], |
| 24 | + Maps.FungiDiddyBarn: [0], |
| 25 | + Maps.FungiLankyAttic: [0, 1], |
| 26 | + Maps.FungiDKBarn: [0, 1], |
| 27 | + Maps.FungiMillFront: [0, 3, 4], |
| 28 | + Maps.FungiMushroomSlam: [0], |
| 29 | + Maps.FungiGiantMushroom: [0, 1, 5], |
| 30 | + Maps.FungiShootingGame: [1], |
| 31 | + Maps.Caves: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 20, 21, 22, 23, 24], |
| 32 | + Maps.Caves5DITiny: [0, 1, 2], |
| 33 | + Maps.Caves5DILanky: [0, 1], |
| 34 | + Maps.Castle: [0, 1, 2, 3, 4, 5], |
| 35 | + Maps.CastleBallroom: [0, 1], |
| 36 | + Maps.CavesRotatingRoom: [0], |
| 37 | + Maps.Caves5DCChunky: [0], |
| 38 | + Maps.Caves5DCDK: [0], |
| 39 | + Maps.Caves5DCDiddyLow: [0, 1, 2], |
| 40 | + Maps.Caves5DCTiny: [0], |
| 41 | + Maps.CavesTileFlip: [4], |
| 42 | + Maps.Caves5DIDiddy: [0, 1, 2], |
| 43 | + Maps.CastleTower: [0, 1, 2, 3, 4], |
| 44 | + Maps.CastleCryptLankyTiny: [0, 1, 2], |
| 45 | + Maps.CastleCryptDKDiddyChunky: [1, 2, 3], |
| 46 | + Maps.CastleMuseum: [0, 1], |
| 47 | + Maps.CastleLibrary: [0, 1, 2, 3], |
| 48 | + Maps.CastleBasement: [0, 1, 2, 3], |
| 49 | + Maps.CastleTree: [0, 1, 2, 3, 4, 5, 6], |
| 50 | + Maps.CastleShed: [0, 1], |
| 51 | + Maps.CastleTrash: [0], |
| 52 | + Maps.CastleGreenhouse: [0, 1], |
| 53 | + Maps.HelmLobby: [0, 1], |
| 54 | + Maps.AztecLobby: [2, 3, 4], |
| 55 | + Maps.GalleonLobby: [2], |
| 56 | + Maps.FactoryLobby: [2, 3], |
| 57 | + Maps.CastleCrypt: [0, 1], |
| 58 | + Maps.CavesShackDiddyHigh: [0, 2], |
| 59 | + Maps.KRoolDiddy: [0], |
| 60 | + Maps.KRoolLanky: [0, 1], |
| 61 | + Maps.KRoolChunky: [0, 2], |
| 62 | +} |
0 commit comments