isaacscript-common 6.2.1 → 6.5.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cachedClasses.d.ts +15 -0
- package/cachedClasses.lua +20 -0
- package/callbacks/reorderedCallbacks.d.ts +9 -0
- package/callbacks/reorderedCallbacks.lua +9 -0
- package/constants.d.ts +26 -4
- package/constants.lua +20 -4
- package/enums/CornerType.d.ts +6 -0
- package/enums/CornerType.lua +11 -0
- package/enums/DecorationVariant.d.ts +9 -0
- package/enums/DecorationVariant.lua +7 -0
- package/enums/RockAltType.d.ts +7 -0
- package/enums/RockAltType.lua +13 -0
- package/features/customGridEntity.d.ts +2 -2
- package/features/customGridEntity.lua +7 -5
- package/features/customStage/backdrop.d.ts +2 -0
- package/features/customStage/backdrop.lua +211 -0
- package/features/customStage/customStageConstants.d.ts +1 -0
- package/features/customStage/customStageConstants.lua +3 -0
- package/features/customStage/exports.d.ts +28 -0
- package/features/customStage/exports.lua +58 -1
- package/features/customStage/gridEntities.d.ts +18 -0
- package/features/customStage/gridEntities.lua +215 -0
- package/features/customStage/init.d.ts +2 -1
- package/features/customStage/init.lua +71 -9
- package/features/customStage/streakText.d.ts +2 -0
- package/features/customStage/streakText.lua +22 -0
- package/features/customStage/v.d.ts +10 -0
- package/features/customStage/v.lua +4 -0
- package/features/customStage/versusScreen.d.ts +3 -0
- package/features/customStage/versusScreen.lua +201 -0
- package/features/debugDisplay/debugDisplay.lua +2 -0
- package/features/debugDisplay/exports.d.ts +108 -0
- package/features/debugDisplay/exports.lua +145 -0
- package/features/debugDisplay/v.d.ts +2 -0
- package/features/debugDisplay/v.lua +9 -0
- package/features/deployJSONRoom.lua +6 -2
- package/features/extraConsoleCommands/init.lua +10 -1
- package/features/extraConsoleCommands/listCommands.d.ts +21 -6
- package/features/extraConsoleCommands/listCommands.lua +50 -19
- package/features/extraConsoleCommands/v.d.ts +1 -0
- package/features/extraConsoleCommands/v.lua +2 -1
- package/features/pause.d.ts +11 -0
- package/features/pause.lua +71 -0
- package/features/runNextRoom.d.ts +8 -0
- package/features/runNextRoom.lua +40 -0
- package/features/saveDataManager/exports.lua +2 -2
- package/features/saveDataManager/load.lua +3 -3
- package/features/saveDataManager/main.lua +3 -3
- package/features/saveDataManager/merge.lua +2 -2
- package/features/saveDataManager/save.lua +3 -3
- package/features/saveDataManager/{constants.d.ts → saveDataManagerConstants.d.ts} +0 -0
- package/features/saveDataManager/{constants.lua → saveDataManagerConstants.lua} +0 -0
- package/functions/chargeBar.lua +4 -6
- package/functions/color.d.ts +0 -2
- package/functions/color.lua +0 -4
- package/functions/deepCopy.lua +2 -2
- package/functions/direction.d.ts +1 -1
- package/functions/doors.d.ts +12 -7
- package/functions/doors.lua +14 -11
- package/functions/entity.d.ts +5 -0
- package/functions/entity.lua +13 -0
- package/functions/gridEntity.d.ts +39 -0
- package/functions/gridEntity.lua +83 -2
- package/functions/kColor.d.ts +0 -2
- package/functions/kColor.lua +0 -4
- package/functions/log.lua +2 -1
- package/functions/pickups.d.ts +9 -9
- package/functions/playerCenter.lua +4 -5
- package/functions/playerIndex.d.ts +3 -0
- package/functions/playerIndex.lua +3 -0
- package/functions/roomShape.d.ts +10 -4
- package/functions/roomShape.lua +15 -2
- package/functions/run.d.ts +7 -0
- package/functions/run.lua +16 -4
- package/functions/sprite.d.ts +1 -1
- package/functions/sprite.lua +1 -1
- package/functions/ui.d.ts +2 -0
- package/functions/ui.lua +8 -0
- package/functions/utils.d.ts +6 -4
- package/functions/utils.lua +6 -4
- package/index.d.ts +1 -1
- package/index.lua +2 -0
- package/initFeatures.lua +7 -1
- package/interfaces/Corner.d.ts +6 -0
- package/interfaces/Corner.lua +2 -0
- package/interfaces/CustomStageLua.d.ts +236 -63
- package/objects/backdropTypeToRockAltType.d.ts +6 -0
- package/objects/backdropTypeToRockAltType.lua +69 -0
- package/objects/bossNamePNGFileNames.d.ts +5 -0
- package/objects/bossNamePNGFileNames.lua +108 -0
- package/objects/bossPortraitPNGFileNames.d.ts +5 -0
- package/objects/bossPortraitPNGFileNames.lua +108 -0
- package/objects/colors.d.ts +15 -8
- package/objects/colors.lua +9 -2
- package/objects/playerNamePNGFileNames.d.ts +5 -0
- package/objects/playerNamePNGFileNames.lua +49 -0
- package/objects/playerPortraitPNGFileNames.d.ts +5 -0
- package/objects/playerPortraitPNGFileNames.lua +49 -0
- package/objects/roomShapeCorners.d.ts +6 -0
- package/objects/roomShapeCorners.lua +259 -0
- package/objects/roomShapeToBottomRightPosition.d.ts +1 -1
- package/objects/roomShapeToTopLeftPosition.d.ts +1 -1
- package/objects/versusScreenBackgroundColors.d.ts +5 -0
- package/objects/versusScreenBackgroundColors.lua +38 -0
- package/objects/versusScreenDirtSpotColors.d.ts +5 -0
- package/objects/versusScreenDirtSpotColors.lua +38 -0
- package/package.json +2 -2
- package/sets/narrowRoomShapesSet.d.ts +2 -0
- package/sets/narrowRoomShapesSet.lua +8 -0
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
3
|
+
local BossID = ____isaac_2Dtypescript_2Ddefinitions.BossID
|
|
4
|
+
--- Used when rendering the "versusscreen.anm2" sprite.
|
|
5
|
+
____exports.BOSS_NAME_PNG_FILE_NAMES = {
|
|
6
|
+
[BossID.MONSTRO] = "bossname_20.0_monstro.png",
|
|
7
|
+
[BossID.LARRY_JR] = "bossname_19.0_larryjr.png",
|
|
8
|
+
[BossID.CHUB] = "bossname_28.0_chub.png",
|
|
9
|
+
[BossID.GURDY] = "bossname_36.0_gurdy.png",
|
|
10
|
+
[BossID.MONSTRO_II] = "bossname_43.0_monstro2.png",
|
|
11
|
+
[BossID.MOM] = "bossname_45.0_mom.png",
|
|
12
|
+
[BossID.SCOLEX] = "bossname_62.1_scolex.png",
|
|
13
|
+
[BossID.MOMS_HEART] = "bossname_78.0_momsheart.png",
|
|
14
|
+
[BossID.FAMINE] = "bossname_63.0_famine.png",
|
|
15
|
+
[BossID.PESTILENCE] = "bossname_64.0_pestilence.png",
|
|
16
|
+
[BossID.WAR] = "bossname_65.0_war.png",
|
|
17
|
+
[BossID.DEATH] = "bossname_66.0_death.png",
|
|
18
|
+
[BossID.DUKE_OF_FLIES] = "bossname_67.0_dukeofflies.png",
|
|
19
|
+
[BossID.PEEP] = "bossname_68.0_peep.png",
|
|
20
|
+
[BossID.LOKI] = "bossname_69.0_loki.png",
|
|
21
|
+
[BossID.BLASTOCYST] = "bossname_74.0_blastocyst.png",
|
|
22
|
+
[BossID.GEMINI] = "bossname_79.0_gemini.png",
|
|
23
|
+
[BossID.FISTULA] = "bossname_71.0_fistula.png",
|
|
24
|
+
[BossID.GISH] = "bossname_43.1_gish.png",
|
|
25
|
+
[BossID.STEVEN] = "bossname_79.1_steven.png",
|
|
26
|
+
[BossID.CHAD] = "bossname_28.1_chad.png",
|
|
27
|
+
[BossID.HEADLESS_HORSEMAN] = "bossname_82.0_headlesshorseman.png",
|
|
28
|
+
[BossID.THE_FALLEN] = "bossname_81.0_thefallen.png",
|
|
29
|
+
[BossID.SATAN] = "bossname_84.0_satan.png",
|
|
30
|
+
[BossID.IT_LIVES] = "bossname_78.1_itlives.png",
|
|
31
|
+
[BossID.THE_HOLLOW] = "bossname_19.1_thehollow.png",
|
|
32
|
+
[BossID.THE_CARRION_QUEEN] = "bossname_28.2_carrionqueen.png",
|
|
33
|
+
[BossID.GURDY_JR] = "bossname_99.0_gurdyjr.png",
|
|
34
|
+
[BossID.THE_HUSK] = "bossname_67.1_thehusk.png",
|
|
35
|
+
[BossID.THE_BLOAT] = "bossname_68.1_bloat.png",
|
|
36
|
+
[BossID.LOKII] = "bossname_69.1_lokii.png",
|
|
37
|
+
[BossID.THE_BLIGHTED_OVUM] = "bossname_79.2_blightedovum.png",
|
|
38
|
+
[BossID.TERATOMA] = "bossname_71.1_teratoma.png",
|
|
39
|
+
[BossID.THE_WIDOW] = "bossname_100.0_widow.png",
|
|
40
|
+
[BossID.MASK_OF_INFAMY] = "bossname_97.0_maskofinfamy.png",
|
|
41
|
+
[BossID.THE_WRETCHED] = "bossname_100.1_thewretched.png",
|
|
42
|
+
[BossID.PIN] = "bossname_62.0_pin.png",
|
|
43
|
+
[BossID.CONQUEST] = "bossname_65.1_conquest.png",
|
|
44
|
+
[BossID.ISAAC] = "playername_01_isaac.png",
|
|
45
|
+
[BossID.BLUE_BABY] = "bossname_102.1_bluebaby.png",
|
|
46
|
+
[BossID.DADDY_LONG_LEGS] = "bossname_101.0_daddylonglegs.png",
|
|
47
|
+
[BossID.TRIACHNID] = "bossname_101.1_triachnid.png",
|
|
48
|
+
[BossID.THE_HAUNT] = "bossname_260.0_thehaunt.png",
|
|
49
|
+
[BossID.DINGLE] = "bossname_261.0_dingle.png",
|
|
50
|
+
[BossID.MEGA_MAW] = "bossname_262.0_megamaw.png",
|
|
51
|
+
[BossID.THE_GATE] = "bossname_263.0_megamaw2.png",
|
|
52
|
+
[BossID.MEGA_FATTY] = "bossname_264.0_megafatty.png",
|
|
53
|
+
[BossID.THE_CAGE] = "bossname_265.0_fatty2.png",
|
|
54
|
+
[BossID.MAMA_GURDY] = "bossname_266.0_mamagurdy.png",
|
|
55
|
+
[BossID.DARK_ONE] = "bossname_267.0_darkone.png",
|
|
56
|
+
[BossID.THE_ADVERSARY] = "bossname_268.0_darkone2.png",
|
|
57
|
+
[BossID.POLYCEPHALUS] = "bossname_269.0_polycephalus.png",
|
|
58
|
+
[BossID.MR_FRED] = "bossname_270.0_megafred.png",
|
|
59
|
+
[BossID.THE_LAMB] = "bossname_273.0_thelamb.png",
|
|
60
|
+
[BossID.MEGA_SATAN] = "bossname_274.0_megasatan.png",
|
|
61
|
+
[BossID.GURGLINGS] = "bossname_276.0_gurglings.png",
|
|
62
|
+
[BossID.THE_STAIN] = "bossname_401.0_thestain.png",
|
|
63
|
+
[BossID.BROWNIE] = "bossname_402.0_brownie.png",
|
|
64
|
+
[BossID.THE_FORSAKEN] = "bossname_403.0_theforsaken.png",
|
|
65
|
+
[BossID.LITTLE_HORN] = "bossname_404.0_littlehorn.png",
|
|
66
|
+
[BossID.RAG_MAN] = "bossname_405.0_ragman.png",
|
|
67
|
+
[BossID.ULTRA_GREED] = "bossname_406.0_ultragreed.png",
|
|
68
|
+
[BossID.HUSH] = "bossname_407.0_hush.png",
|
|
69
|
+
[BossID.DANGLE] = "bossname_dangle.png",
|
|
70
|
+
[BossID.TURDLING] = "bossname_turdlings.png",
|
|
71
|
+
[BossID.THE_FRAIL] = "bossname_thefrail.png",
|
|
72
|
+
[BossID.RAG_MEGA] = "bossname_ragmega.png",
|
|
73
|
+
[BossID.SISTERS_VIS] = "bossname_sisterssvis.png",
|
|
74
|
+
[BossID.BIG_HORN] = "bossname_bighorn.png",
|
|
75
|
+
[BossID.DELIRIUM] = "bossname_delirium.png",
|
|
76
|
+
[BossID.THE_MATRIARCH] = "bossname_matriarch.png",
|
|
77
|
+
[BossID.THE_PILE] = "bossname_polycephalus2.png",
|
|
78
|
+
[BossID.REAP_CREEP] = "bossname_reapcreep.png",
|
|
79
|
+
[BossID.LIL_BLUB] = "bossname_beelzeblub.png",
|
|
80
|
+
[BossID.WORMWOOD] = "bossname_wormwood.png",
|
|
81
|
+
[BossID.RAINMAKER] = "bossname_rainmaker.png",
|
|
82
|
+
[BossID.THE_VISAGE] = "bossname_visage.png",
|
|
83
|
+
[BossID.THE_SIREN] = "bossname_siren.png",
|
|
84
|
+
[BossID.TUFF_TWINS] = "bossname_tufftwins.png",
|
|
85
|
+
[BossID.THE_HERETIC] = "bossname_heretic.png",
|
|
86
|
+
[BossID.HORNFEL] = "bossname_hornfel.png",
|
|
87
|
+
[BossID.GREAT_GIDEON] = "bossname_gideon.png",
|
|
88
|
+
[BossID.BABY_PLUM] = "bossname_babyplum.png",
|
|
89
|
+
[BossID.THE_SCOURGE] = "bossname_scourge.png",
|
|
90
|
+
[BossID.CHIMERA] = "bossname_chimera.png",
|
|
91
|
+
[BossID.ROTGUT] = "bossname_rotgut.png",
|
|
92
|
+
[BossID.MOTHER] = "bossname_mother.png",
|
|
93
|
+
[BossID.MAUSOLEUM_MOM] = "bossname_45.0_mom.png",
|
|
94
|
+
[BossID.MAUSOLEUM_MOMS_HEART] = "bossname_78.0_momsheart.png",
|
|
95
|
+
[BossID.MIN_MIN] = "bossname_minmin.png",
|
|
96
|
+
[BossID.CLOG] = "bossname_clog.png",
|
|
97
|
+
[BossID.SINGE] = "bossname_singe.png",
|
|
98
|
+
[BossID.BUMBINO] = "bossname_bumbino.png",
|
|
99
|
+
[BossID.COLOSTOMIA] = "bossname_colostomia.png",
|
|
100
|
+
[BossID.THE_SHELL] = "bossname_shell.png",
|
|
101
|
+
[BossID.TURDLET] = "bossname_turdlet.png",
|
|
102
|
+
[BossID.RAGLICH] = "bossname_raglich.png",
|
|
103
|
+
[BossID.DOGMA] = "bossname_dogma.png",
|
|
104
|
+
[BossID.BEAST] = "bossname_dogma.png",
|
|
105
|
+
[BossID.HORNY_BOYS] = "bossname_hornyboys.png",
|
|
106
|
+
[BossID.CLUTCH] = "bossname_clutch.png"
|
|
107
|
+
}
|
|
108
|
+
return ____exports
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
3
|
+
local BossID = ____isaac_2Dtypescript_2Ddefinitions.BossID
|
|
4
|
+
--- Used when rendering the "versusscreen.anm2" sprite.
|
|
5
|
+
____exports.BOSS_PORTRAIT_PNG_FILE_NAMES = {
|
|
6
|
+
[BossID.MONSTRO] = "portrait_20.0_monstro.png",
|
|
7
|
+
[BossID.LARRY_JR] = "portrait_19.0_larryjr.png",
|
|
8
|
+
[BossID.CHUB] = "portrait_28.0_chub.png",
|
|
9
|
+
[BossID.GURDY] = "portrait_36.0_gurdy.png",
|
|
10
|
+
[BossID.MONSTRO_II] = "portrait_43.0_monstro2.png",
|
|
11
|
+
[BossID.MOM] = "portrait_45.0_mom.png",
|
|
12
|
+
[BossID.SCOLEX] = "portrait_62.1_scolex.png",
|
|
13
|
+
[BossID.MOMS_HEART] = "portrait_78.0_momsheart.png",
|
|
14
|
+
[BossID.FAMINE] = "portrait_63.0_famine.png",
|
|
15
|
+
[BossID.PESTILENCE] = "portrait_64.0_pestilence.png",
|
|
16
|
+
[BossID.WAR] = "portrait_65.0_war.png",
|
|
17
|
+
[BossID.DEATH] = "portrait_66.0_death.png",
|
|
18
|
+
[BossID.DUKE_OF_FLIES] = "portrait_67.0_dukeofflies.png",
|
|
19
|
+
[BossID.PEEP] = "portrait_68.0_peep.png",
|
|
20
|
+
[BossID.LOKI] = "portrait_69.0_loki.png",
|
|
21
|
+
[BossID.BLASTOCYST] = "portrait_74.0_blastocyst.png",
|
|
22
|
+
[BossID.GEMINI] = "portrait_79.0_gemini.png",
|
|
23
|
+
[BossID.FISTULA] = "portrait_71.0_fistula.png",
|
|
24
|
+
[BossID.GISH] = "portrait_43.1_gish.png",
|
|
25
|
+
[BossID.STEVEN] = "portrait_79.1_steven.png",
|
|
26
|
+
[BossID.CHAD] = "portrait_28.1_chad.png",
|
|
27
|
+
[BossID.HEADLESS_HORSEMAN] = "portrait_82.0_headlesshorseman.png",
|
|
28
|
+
[BossID.THE_FALLEN] = "portrait_81.0_thefallen.png",
|
|
29
|
+
[BossID.SATAN] = "portrait_84.0_satan.png",
|
|
30
|
+
[BossID.IT_LIVES] = "portrait_78.1_itlives.png",
|
|
31
|
+
[BossID.THE_HOLLOW] = "portrait_19.1_thehollow.png",
|
|
32
|
+
[BossID.THE_CARRION_QUEEN] = "portrait_28.2_carrionqueen.png",
|
|
33
|
+
[BossID.GURDY_JR] = "portrait_99.0_gurdyjr.png",
|
|
34
|
+
[BossID.THE_HUSK] = "portrait_67.1_thehusk.png",
|
|
35
|
+
[BossID.THE_BLOAT] = "portrait_68.1_bloat.png",
|
|
36
|
+
[BossID.LOKII] = "portrait_69.1_lokii.png",
|
|
37
|
+
[BossID.THE_BLIGHTED_OVUM] = "portrait_79.2_blightedovum.png",
|
|
38
|
+
[BossID.TERATOMA] = "portrait_71.1_teratoma.png",
|
|
39
|
+
[BossID.THE_WIDOW] = "portrait_100.0_widow.png",
|
|
40
|
+
[BossID.MASK_OF_INFAMY] = "portrait_97.0_maskofinfamy.png",
|
|
41
|
+
[BossID.THE_WRETCHED] = "portrait_100.1_thewretched.png",
|
|
42
|
+
[BossID.PIN] = "portrait_62.0_pin.png",
|
|
43
|
+
[BossID.CONQUEST] = "portrait_65.1_conquest.png",
|
|
44
|
+
[BossID.ISAAC] = "portrait_102.0_isaac.png",
|
|
45
|
+
[BossID.BLUE_BABY] = "portrait_102.1_bluebaby.png",
|
|
46
|
+
[BossID.DADDY_LONG_LEGS] = "portrait_101.0_daddylonglegs.png",
|
|
47
|
+
[BossID.TRIACHNID] = "portrait_101.1_triachnid.png",
|
|
48
|
+
[BossID.THE_HAUNT] = "portrait_260.0_thehaunt.png",
|
|
49
|
+
[BossID.DINGLE] = "portrait_261.0_dingle.png",
|
|
50
|
+
[BossID.MEGA_MAW] = "portrait_262.0_megamaw.png",
|
|
51
|
+
[BossID.THE_GATE] = "portrait_263.0_megamaw2.png",
|
|
52
|
+
[BossID.MEGA_FATTY] = "portrait_264.0_megafatty.png",
|
|
53
|
+
[BossID.THE_CAGE] = "portrait_265.0_fatty2.png",
|
|
54
|
+
[BossID.MAMA_GURDY] = "portrait_266.0_mamagurdy.png",
|
|
55
|
+
[BossID.DARK_ONE] = "portrait_267.0_darkone.png",
|
|
56
|
+
[BossID.THE_ADVERSARY] = "portrait_268.0_darkone2.png",
|
|
57
|
+
[BossID.POLYCEPHALUS] = "portrait_269.0_polycephalus.png",
|
|
58
|
+
[BossID.MR_FRED] = "portrait_270.0_megafred.png",
|
|
59
|
+
[BossID.THE_LAMB] = "portrait_273.0_thelamb.png",
|
|
60
|
+
[BossID.MEGA_SATAN] = "portrait_274.0_megasatan.png",
|
|
61
|
+
[BossID.GURGLINGS] = "portrait_276.0_gurglings.png",
|
|
62
|
+
[BossID.THE_STAIN] = "portrait_401.0_thestain.png",
|
|
63
|
+
[BossID.BROWNIE] = "portrait_402.0_brownie.png",
|
|
64
|
+
[BossID.THE_FORSAKEN] = "portrait_403.0_theforsaken.png",
|
|
65
|
+
[BossID.LITTLE_HORN] = "portrait_404.0_littlehorn.png",
|
|
66
|
+
[BossID.RAG_MAN] = "portrait_405.0_ragman.png",
|
|
67
|
+
[BossID.ULTRA_GREED] = "portrait_406.0_ultragreed.png",
|
|
68
|
+
[BossID.HUSH] = "portrait_407.0_hush.png",
|
|
69
|
+
[BossID.DANGLE] = "portrait_dangle.png",
|
|
70
|
+
[BossID.TURDLING] = "portrait_turdlings.png",
|
|
71
|
+
[BossID.THE_FRAIL] = "portrait_thefrail.png",
|
|
72
|
+
[BossID.RAG_MEGA] = "portrait_ragmega.png",
|
|
73
|
+
[BossID.SISTERS_VIS] = "portrait_sistersvis.png",
|
|
74
|
+
[BossID.BIG_HORN] = "portrait_bighorn.png",
|
|
75
|
+
[BossID.DELIRIUM] = "portrait_delirium.png",
|
|
76
|
+
[BossID.THE_MATRIARCH] = "portrait_matriarch.png",
|
|
77
|
+
[BossID.THE_PILE] = "portrait_269.1_polycephalus2.png",
|
|
78
|
+
[BossID.REAP_CREEP] = "portrait_900.0_reapcreep.png",
|
|
79
|
+
[BossID.LIL_BLUB] = "portrait_901.0_beelzeblub.png",
|
|
80
|
+
[BossID.WORMWOOD] = "portrait_902.0_wormwood.png",
|
|
81
|
+
[BossID.RAINMAKER] = "portrait_902.0_rainmaker.png",
|
|
82
|
+
[BossID.THE_VISAGE] = "portrait_903.0_visage.png",
|
|
83
|
+
[BossID.THE_SIREN] = "portrait_904.0_siren.png",
|
|
84
|
+
[BossID.TUFF_TWINS] = "portrait_19.100_tufftwins.png",
|
|
85
|
+
[BossID.THE_HERETIC] = "portrait_905.0_heretic.png",
|
|
86
|
+
[BossID.HORNFEL] = "portrait_906.0_hornfel.png",
|
|
87
|
+
[BossID.GREAT_GIDEON] = "portrait_907.0_gideon.png",
|
|
88
|
+
[BossID.BABY_PLUM] = "portrait_908.0_babyplum.png",
|
|
89
|
+
[BossID.THE_SCOURGE] = "portrait_909.0_scourge.png",
|
|
90
|
+
[BossID.CHIMERA] = "portrait_910.0_chimera.png",
|
|
91
|
+
[BossID.ROTGUT] = "portrait_911.0_rotgut.png",
|
|
92
|
+
[BossID.MOTHER] = "portrait_mother.png",
|
|
93
|
+
[BossID.MAUSOLEUM_MOM] = "portrait_45.0_mom.png",
|
|
94
|
+
[BossID.MAUSOLEUM_MOMS_HEART] = "portrait_78.0_momsheart.png",
|
|
95
|
+
[BossID.MIN_MIN] = "portrait_minmin.png",
|
|
96
|
+
[BossID.CLOG] = "portrait_clog.png",
|
|
97
|
+
[BossID.SINGE] = "portrait_singe.png",
|
|
98
|
+
[BossID.BUMBINO] = "portrait_bumbino.png",
|
|
99
|
+
[BossID.COLOSTOMIA] = "portrait_colostomia.png",
|
|
100
|
+
[BossID.THE_SHELL] = "portrait_shell.png",
|
|
101
|
+
[BossID.TURDLET] = "portrait_turdlet.png",
|
|
102
|
+
[BossID.RAGLICH] = "portrait_raglich.png",
|
|
103
|
+
[BossID.DOGMA] = "portrait_dogma.png",
|
|
104
|
+
[BossID.BEAST] = "portrait_dogma.png",
|
|
105
|
+
[BossID.HORNY_BOYS] = "portrait_hornyboys.png",
|
|
106
|
+
[BossID.CLUTCH] = "portrait_clutch.png"
|
|
107
|
+
}
|
|
108
|
+
return ____exports
|
package/objects/colors.d.ts
CHANGED
|
@@ -3,14 +3,21 @@
|
|
|
3
3
|
*
|
|
4
4
|
* Note that if you want to further modify these colors, you should copy them first with the
|
|
5
5
|
* `copyColor` function.
|
|
6
|
+
*
|
|
7
|
+
* The non-standard colors come from:
|
|
8
|
+
* https://htmlcolorcodes.com/color-names/
|
|
6
9
|
*/
|
|
7
10
|
export declare const COLORS: {
|
|
8
|
-
readonly Black: Color
|
|
9
|
-
readonly Red: Color
|
|
10
|
-
readonly Green: Color
|
|
11
|
-
readonly Blue: Color
|
|
12
|
-
readonly Yellow: Color
|
|
13
|
-
readonly Pink: Color
|
|
14
|
-
readonly Cyan: Color
|
|
15
|
-
readonly White: Color
|
|
11
|
+
readonly Black: Readonly<Color>;
|
|
12
|
+
readonly Red: Readonly<Color>;
|
|
13
|
+
readonly Green: Readonly<Color>;
|
|
14
|
+
readonly Blue: Readonly<Color>;
|
|
15
|
+
readonly Yellow: Readonly<Color>;
|
|
16
|
+
readonly Pink: Readonly<Color>;
|
|
17
|
+
readonly Cyan: Readonly<Color>;
|
|
18
|
+
readonly White: Readonly<Color>;
|
|
19
|
+
readonly Brown: Readonly<Color>;
|
|
20
|
+
readonly Gray: Readonly<Color>;
|
|
21
|
+
readonly Orange: Readonly<Color>;
|
|
22
|
+
readonly Purple: Readonly<Color>;
|
|
16
23
|
};
|
package/objects/colors.lua
CHANGED
|
@@ -3,14 +3,21 @@ local ____exports = {}
|
|
|
3
3
|
--
|
|
4
4
|
-- Note that if you want to further modify these colors, you should copy them first with the
|
|
5
5
|
-- `copyColor` function.
|
|
6
|
+
--
|
|
7
|
+
-- The non-standard colors come from:
|
|
8
|
+
-- https://htmlcolorcodes.com/color-names/
|
|
6
9
|
____exports.COLORS = {
|
|
7
|
-
Black = Color(
|
|
10
|
+
Black = Color(0, 0, 0),
|
|
8
11
|
Red = Color(1, 0, 0),
|
|
9
12
|
Green = Color(0, 1, 0),
|
|
10
13
|
Blue = Color(0, 0, 1),
|
|
11
14
|
Yellow = Color(1, 1, 0),
|
|
12
15
|
Pink = Color(1, 0, 1),
|
|
13
16
|
Cyan = Color(0, 1, 1),
|
|
14
|
-
White = Color(1, 1, 1)
|
|
17
|
+
White = Color(1, 1, 1),
|
|
18
|
+
Brown = Color(0.588, 0.294, 0),
|
|
19
|
+
Gray = Color(0.5, 0.5, 0.5),
|
|
20
|
+
Orange = Color(1, 0.647, 0),
|
|
21
|
+
Purple = Color(0.5, 0, 0.5)
|
|
15
22
|
}
|
|
16
23
|
return ____exports
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
3
|
+
local PlayerType = ____isaac_2Dtypescript_2Ddefinitions.PlayerType
|
|
4
|
+
--- Used when rendering the "versusscreen.anm2" sprite.
|
|
5
|
+
____exports.PLAYER_NAME_PNG_FILE_NAMES = {
|
|
6
|
+
[PlayerType.POSSESSOR] = nil,
|
|
7
|
+
[PlayerType.ISAAC] = "playername_01_isaac.png",
|
|
8
|
+
[PlayerType.MAGDALENE] = "playername_02_magdalene.png",
|
|
9
|
+
[PlayerType.CAIN] = "playername_03_cain.png",
|
|
10
|
+
[PlayerType.JUDAS] = "playername_04_judas.png",
|
|
11
|
+
[PlayerType.BLUE_BABY] = "playername_06_bluebaby.png",
|
|
12
|
+
[PlayerType.EVE] = "playername_05_eve.png",
|
|
13
|
+
[PlayerType.SAMSON] = "playername_07_samson.png",
|
|
14
|
+
[PlayerType.AZAZEL] = "playername_08_azazel.png",
|
|
15
|
+
[PlayerType.LAZARUS] = "playername_10_lazarus.png",
|
|
16
|
+
[PlayerType.EDEN] = "playername_09_eden.png",
|
|
17
|
+
[PlayerType.THE_LOST] = "playername_12_thelost.png",
|
|
18
|
+
[PlayerType.LAZARUS_2] = "playername_10_lazarus.png",
|
|
19
|
+
[PlayerType.BLACK_JUDAS] = "playername_04_judas.png",
|
|
20
|
+
[PlayerType.LILITH] = "playername_13_lilith.png",
|
|
21
|
+
[PlayerType.KEEPER] = "playername_14_thekeeper.png",
|
|
22
|
+
[PlayerType.APOLLYON] = "playername_15_apollyon.png",
|
|
23
|
+
[PlayerType.THE_FORGOTTEN] = "playername_16_theforgotten.png",
|
|
24
|
+
[PlayerType.THE_SOUL] = "playername_16_theforgotten.png",
|
|
25
|
+
[PlayerType.BETHANY] = "playername_01x_bethany.png",
|
|
26
|
+
[PlayerType.JACOB] = "playername_02x_jacob_esau.png",
|
|
27
|
+
[PlayerType.ESAU] = "playername_02x_jacob_esau.png",
|
|
28
|
+
[PlayerType.ISAAC_B] = "playername_01_isaac.png",
|
|
29
|
+
[PlayerType.MAGDALENE_B] = "playername_02_magdalene.png",
|
|
30
|
+
[PlayerType.CAIN_B] = "playername_03_cain.png",
|
|
31
|
+
[PlayerType.JUDAS_B] = "playername_04_judas.png",
|
|
32
|
+
[PlayerType.BLUE_BABY_B] = "playername_06_bluebaby.png",
|
|
33
|
+
[PlayerType.EVE_B] = "playername_05_eve.png",
|
|
34
|
+
[PlayerType.SAMSON_B] = "playername_07_samson.png",
|
|
35
|
+
[PlayerType.AZAZEL_B] = "playername_08_azazel.png",
|
|
36
|
+
[PlayerType.LAZARUS_B] = "playername_10_lazarus.png",
|
|
37
|
+
[PlayerType.EDEN_B] = "playername_09_eden.png",
|
|
38
|
+
[PlayerType.THE_LOST_B] = "playername_12_thelost.png",
|
|
39
|
+
[PlayerType.LILITH_B] = "playername_13_lilith.png",
|
|
40
|
+
[PlayerType.KEEPER_B] = "playername_14_thekeeper.png",
|
|
41
|
+
[PlayerType.APOLLYON_B] = "playername_15_apollyon.png",
|
|
42
|
+
[PlayerType.THE_FORGOTTEN_B] = "playername_16_theforgotten.png",
|
|
43
|
+
[PlayerType.BETHANY_B] = "playername_01x_bethany.png",
|
|
44
|
+
[PlayerType.JACOB_B] = "playername_02x_jacob.png",
|
|
45
|
+
[PlayerType.LAZARUS_2_B] = "playername_10_lazarus.png",
|
|
46
|
+
[PlayerType.JACOB_2_B] = "playername_02x_jacob.png",
|
|
47
|
+
[PlayerType.THE_SOUL_B] = "playername_16_theforgotten.png"
|
|
48
|
+
}
|
|
49
|
+
return ____exports
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
3
|
+
local PlayerType = ____isaac_2Dtypescript_2Ddefinitions.PlayerType
|
|
4
|
+
--- Used when rendering the "versusscreen.anm2" sprite.
|
|
5
|
+
____exports.PLAYER_PORTRAIT_PNG_FILE_NAMES = {
|
|
6
|
+
[PlayerType.POSSESSOR] = nil,
|
|
7
|
+
[PlayerType.ISAAC] = "playerportrait_isaac.png",
|
|
8
|
+
[PlayerType.MAGDALENE] = "playerportrait_magdalene.png",
|
|
9
|
+
[PlayerType.CAIN] = "playerportrait_cain.png",
|
|
10
|
+
[PlayerType.JUDAS] = "playerportrait_judas.png",
|
|
11
|
+
[PlayerType.BLUE_BABY] = "playerportrait_bluebaby.png",
|
|
12
|
+
[PlayerType.EVE] = "playerportrait_eve.png",
|
|
13
|
+
[PlayerType.SAMSON] = "playerportrait_samson.png",
|
|
14
|
+
[PlayerType.AZAZEL] = "playerportrait_azazel.png",
|
|
15
|
+
[PlayerType.LAZARUS] = "playerportrait_lazarus.png",
|
|
16
|
+
[PlayerType.EDEN] = "playerportrait_eden.png",
|
|
17
|
+
[PlayerType.THE_LOST] = "playerportrait_thelost.png",
|
|
18
|
+
[PlayerType.LAZARUS_2] = "playerportrait_lazarus2.png",
|
|
19
|
+
[PlayerType.BLACK_JUDAS] = "playerportrait_darkjudas.png",
|
|
20
|
+
[PlayerType.LILITH] = "playerportrait_lilith.png",
|
|
21
|
+
[PlayerType.KEEPER] = "playerportrait_keeper.png",
|
|
22
|
+
[PlayerType.APOLLYON] = "playerportrait_apollyon.png",
|
|
23
|
+
[PlayerType.THE_FORGOTTEN] = "playerportrait_theforgotten.png",
|
|
24
|
+
[PlayerType.THE_SOUL] = "playerportrait_theforgotten.png",
|
|
25
|
+
[PlayerType.BETHANY] = "playerportrait_bethany.png",
|
|
26
|
+
[PlayerType.JACOB] = "playerportrait_jacob.png",
|
|
27
|
+
[PlayerType.ESAU] = "playerportrait_jacob.png",
|
|
28
|
+
[PlayerType.ISAAC_B] = "playerportrait_isaac_b.png",
|
|
29
|
+
[PlayerType.MAGDALENE_B] = "playerportrait_magdalene_b.png",
|
|
30
|
+
[PlayerType.CAIN_B] = "playerportrait_cain_b.png",
|
|
31
|
+
[PlayerType.JUDAS_B] = "playerportrait_judas_b.png",
|
|
32
|
+
[PlayerType.BLUE_BABY_B] = "playerportrait_bluebaby_b.png",
|
|
33
|
+
[PlayerType.EVE_B] = "playerportrait_eve_b.png",
|
|
34
|
+
[PlayerType.SAMSON_B] = "playerportrait_samson_b.png",
|
|
35
|
+
[PlayerType.AZAZEL_B] = "playerportrait_azazel_b.png",
|
|
36
|
+
[PlayerType.LAZARUS_B] = "playerportrait_lazarus_b.png",
|
|
37
|
+
[PlayerType.EDEN_B] = "playerportrait_eden_b.png",
|
|
38
|
+
[PlayerType.THE_LOST_B] = "playerportrait_thelost_b.png",
|
|
39
|
+
[PlayerType.LILITH_B] = "playerportrait_lilith_b.png",
|
|
40
|
+
[PlayerType.KEEPER_B] = "playerportrait_keeper_b.png",
|
|
41
|
+
[PlayerType.APOLLYON_B] = "playerportrait_apollyon_b.png",
|
|
42
|
+
[PlayerType.THE_FORGOTTEN_B] = "playerportrait_theforgotten_b.png",
|
|
43
|
+
[PlayerType.BETHANY_B] = "playerportrait_bethany_b.png",
|
|
44
|
+
[PlayerType.JACOB_B] = "playerportrait_jacob_b.png",
|
|
45
|
+
[PlayerType.LAZARUS_2_B] = "playerportrait_lazarus_b_dead.png",
|
|
46
|
+
[PlayerType.JACOB_2_B] = "playerportrait_jacob_b.png",
|
|
47
|
+
[PlayerType.THE_SOUL_B] = "playerportrait_theforgotten_b.png"
|
|
48
|
+
}
|
|
49
|
+
return ____exports
|
|
@@ -0,0 +1,259 @@
|
|
|
1
|
+
local ____exports = {}
|
|
2
|
+
local ____isaac_2Dtypescript_2Ddefinitions = require("isaac-typescript-definitions")
|
|
3
|
+
local RoomShape = ____isaac_2Dtypescript_2Ddefinitions.RoomShape
|
|
4
|
+
local ____CornerType = require("enums.CornerType")
|
|
5
|
+
local CornerType = ____CornerType.CornerType
|
|
6
|
+
local TWO_BY_TWO_CENTER_X = 580
|
|
7
|
+
local TWO_BY_TWO_CENTER_Y = 420
|
|
8
|
+
--- The locations of the corners for each room shape.
|
|
9
|
+
____exports.ROOM_SHAPE_CORNERS = {
|
|
10
|
+
[RoomShape.SHAPE_1x1] = {
|
|
11
|
+
{
|
|
12
|
+
type = CornerType.TOP_LEFT,
|
|
13
|
+
position = Vector(60, 140)
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
type = CornerType.TOP_RIGHT,
|
|
17
|
+
position = Vector(580, 140)
|
|
18
|
+
},
|
|
19
|
+
{
|
|
20
|
+
type = CornerType.BOTTOM_LEFT,
|
|
21
|
+
position = Vector(60, 420)
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
25
|
+
position = Vector(580, 420)
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
[RoomShape.IH] = {
|
|
29
|
+
{
|
|
30
|
+
type = CornerType.TOP_LEFT,
|
|
31
|
+
position = Vector(60, 220)
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
type = CornerType.TOP_RIGHT,
|
|
35
|
+
position = Vector(580, 220)
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
type = CornerType.BOTTOM_LEFT,
|
|
39
|
+
position = Vector(60, 340)
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
43
|
+
position = Vector(580, 340)
|
|
44
|
+
}
|
|
45
|
+
},
|
|
46
|
+
[RoomShape.IV] = {
|
|
47
|
+
{
|
|
48
|
+
type = CornerType.TOP_LEFT,
|
|
49
|
+
position = Vector(220, 140)
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
type = CornerType.TOP_RIGHT,
|
|
53
|
+
position = Vector(420, 140)
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
type = CornerType.BOTTOM_LEFT,
|
|
57
|
+
position = Vector(220, 420)
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
61
|
+
position = Vector(420, 420)
|
|
62
|
+
}
|
|
63
|
+
},
|
|
64
|
+
[RoomShape.SHAPE_1x2] = {
|
|
65
|
+
{
|
|
66
|
+
type = CornerType.TOP_LEFT,
|
|
67
|
+
position = Vector(60, 140)
|
|
68
|
+
},
|
|
69
|
+
{
|
|
70
|
+
type = CornerType.TOP_RIGHT,
|
|
71
|
+
position = Vector(580, 140)
|
|
72
|
+
},
|
|
73
|
+
{
|
|
74
|
+
type = CornerType.BOTTOM_LEFT,
|
|
75
|
+
position = Vector(60, 700)
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
79
|
+
position = Vector(580, 700)
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
[RoomShape.IIV] = {
|
|
83
|
+
{
|
|
84
|
+
type = CornerType.TOP_LEFT,
|
|
85
|
+
position = Vector(220, 140)
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
type = CornerType.TOP_RIGHT,
|
|
89
|
+
position = Vector(420, 140)
|
|
90
|
+
},
|
|
91
|
+
{
|
|
92
|
+
type = CornerType.BOTTOM_LEFT,
|
|
93
|
+
position = Vector(220, 700)
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
97
|
+
position = Vector(420, 700)
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
[RoomShape.SHAPE_2x1] = {
|
|
101
|
+
{
|
|
102
|
+
type = CornerType.TOP_LEFT,
|
|
103
|
+
position = Vector(60, 140)
|
|
104
|
+
},
|
|
105
|
+
{
|
|
106
|
+
type = CornerType.TOP_RIGHT,
|
|
107
|
+
position = Vector(1100, 140)
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
type = CornerType.BOTTOM_LEFT,
|
|
111
|
+
position = Vector(60, 420)
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
115
|
+
position = Vector(1100, 420)
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
[RoomShape.IIH] = {
|
|
119
|
+
{
|
|
120
|
+
type = CornerType.TOP_LEFT,
|
|
121
|
+
position = Vector(60, 220)
|
|
122
|
+
},
|
|
123
|
+
{
|
|
124
|
+
type = CornerType.TOP_RIGHT,
|
|
125
|
+
position = Vector(1100, 220)
|
|
126
|
+
},
|
|
127
|
+
{
|
|
128
|
+
type = CornerType.BOTTOM_LEFT,
|
|
129
|
+
position = Vector(60, 340)
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
133
|
+
position = Vector(1100, 340)
|
|
134
|
+
}
|
|
135
|
+
},
|
|
136
|
+
[RoomShape.SHAPE_2x2] = {
|
|
137
|
+
{
|
|
138
|
+
type = CornerType.TOP_LEFT,
|
|
139
|
+
position = Vector(60, 140)
|
|
140
|
+
},
|
|
141
|
+
{
|
|
142
|
+
type = CornerType.TOP_RIGHT,
|
|
143
|
+
position = Vector(1100, 140)
|
|
144
|
+
},
|
|
145
|
+
{
|
|
146
|
+
type = CornerType.BOTTOM_LEFT,
|
|
147
|
+
position = Vector(60, 700)
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
151
|
+
position = Vector(1100, 700)
|
|
152
|
+
}
|
|
153
|
+
},
|
|
154
|
+
[RoomShape.LTL] = {
|
|
155
|
+
{
|
|
156
|
+
type = CornerType.TOP_LEFT,
|
|
157
|
+
position = Vector(TWO_BY_TWO_CENTER_X, 140)
|
|
158
|
+
},
|
|
159
|
+
{
|
|
160
|
+
type = CornerType.TOP_RIGHT,
|
|
161
|
+
position = Vector(1100, 140)
|
|
162
|
+
},
|
|
163
|
+
{
|
|
164
|
+
type = CornerType.TOP_LEFT,
|
|
165
|
+
position = Vector(60, TWO_BY_TWO_CENTER_Y)
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
169
|
+
position = Vector(TWO_BY_TWO_CENTER_X, TWO_BY_TWO_CENTER_Y)
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
type = CornerType.BOTTOM_LEFT,
|
|
173
|
+
position = Vector(60, 700)
|
|
174
|
+
},
|
|
175
|
+
{
|
|
176
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
177
|
+
position = Vector(1100, 700)
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
[RoomShape.LTR] = {
|
|
181
|
+
{
|
|
182
|
+
type = CornerType.TOP_LEFT,
|
|
183
|
+
position = Vector(60, 140)
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
type = CornerType.TOP_RIGHT,
|
|
187
|
+
position = Vector(TWO_BY_TWO_CENTER_X, 140)
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
type = CornerType.BOTTOM_LEFT,
|
|
191
|
+
position = Vector(TWO_BY_TWO_CENTER_X, TWO_BY_TWO_CENTER_Y)
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
type = CornerType.TOP_RIGHT,
|
|
195
|
+
position = Vector(1100, TWO_BY_TWO_CENTER_Y)
|
|
196
|
+
},
|
|
197
|
+
{
|
|
198
|
+
type = CornerType.BOTTOM_LEFT,
|
|
199
|
+
position = Vector(60, 700)
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
203
|
+
position = Vector(1100, 700)
|
|
204
|
+
}
|
|
205
|
+
},
|
|
206
|
+
[RoomShape.LBL] = {
|
|
207
|
+
{
|
|
208
|
+
type = CornerType.TOP_LEFT,
|
|
209
|
+
position = Vector(60, 140)
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
type = CornerType.TOP_RIGHT,
|
|
213
|
+
position = Vector(1100, 140)
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
type = CornerType.BOTTOM_LEFT,
|
|
217
|
+
position = Vector(TWO_BY_TWO_CENTER_X, 140)
|
|
218
|
+
},
|
|
219
|
+
{
|
|
220
|
+
type = CornerType.TOP_RIGHT,
|
|
221
|
+
position = Vector(TWO_BY_TWO_CENTER_X, TWO_BY_TWO_CENTER_Y)
|
|
222
|
+
},
|
|
223
|
+
{
|
|
224
|
+
type = CornerType.BOTTOM_LEFT,
|
|
225
|
+
position = Vector(TWO_BY_TWO_CENTER_X, 700)
|
|
226
|
+
},
|
|
227
|
+
{
|
|
228
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
229
|
+
position = Vector(1100, 700)
|
|
230
|
+
}
|
|
231
|
+
},
|
|
232
|
+
[RoomShape.LBR] = {
|
|
233
|
+
{
|
|
234
|
+
type = CornerType.TOP_LEFT,
|
|
235
|
+
position = Vector(60, 140)
|
|
236
|
+
},
|
|
237
|
+
{
|
|
238
|
+
type = CornerType.TOP_RIGHT,
|
|
239
|
+
position = Vector(1100, 140)
|
|
240
|
+
},
|
|
241
|
+
{
|
|
242
|
+
type = CornerType.TOP_LEFT,
|
|
243
|
+
position = Vector(TWO_BY_TWO_CENTER_X, TWO_BY_TWO_CENTER_Y)
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
247
|
+
position = Vector(1100, TWO_BY_TWO_CENTER_Y)
|
|
248
|
+
},
|
|
249
|
+
{
|
|
250
|
+
type = CornerType.BOTTOM_LEFT,
|
|
251
|
+
position = Vector(60, 700)
|
|
252
|
+
},
|
|
253
|
+
{
|
|
254
|
+
type = CornerType.BOTTOM_RIGHT,
|
|
255
|
+
position = Vector(TWO_BY_TWO_CENTER_X, 700)
|
|
256
|
+
}
|
|
257
|
+
}
|
|
258
|
+
}
|
|
259
|
+
return ____exports
|