-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathlightcone.go
More file actions
108 lines (99 loc) · 4.45 KB
/
lightcone.go
File metadata and controls
108 lines (99 loc) · 4.45 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
package key
type LightCone string
// Destruction
const (
TheMolesWelcomeYou LightCone = "the_moles_welcome_you"
NowheretoRun LightCone = "nowhere_to_run"
MutualDemise LightCone = "mutual_demise"
ASecretVow LightCone = "a_secret_vow"
ShatteredHome LightCone = "shattered_home"
SomethingIrreplaceable LightCone = "something_irreplaceable"
UndertheBlueSky LightCone = "under_the_blue_sky"
CollapsingSky LightCone = "collapsing_sky"
OntheFallofanAeon LightCone = "on_the_fall_of_an_aeon"
WoofWalkTime LightCone = "woof_walk_time"
TheUnreachableSide LightCone = "the_unreachable_side"
)
// Hunt
const (
DartingArrow LightCone = "darting_arrow"
CruisingintheStellarSea LightCone = "cruising_in_the_stellar_sea"
Arrows LightCone = "arrows"
Adversarial LightCone = "adversarial"
OnlySilenceRemains LightCone = "only_silence_remains"
RiverFlowsinSpring LightCone = "river_flows_in_spring"
SubscribeforMore LightCone = "subscribe_for_more"
Swordplay LightCone = "swordplay"
ReturntoDarkness LightCone = "return_to_darkness"
SleepLiketheDead LightCone = "sleep_like_the_dead"
IntheNight LightCone = "in_the_night"
)
// Nihility
const (
Fermata LightCone = "fermata"
EyesofthePrey LightCone = "eyes_of_the_prey"
GoodNightandSleepWell LightCone = "good_night_and_sleep_well"
IncessantRain LightCone = "incessant_rain"
BeforetheTutorialMissionStarts LightCone = "before_the_tutorial_mission_starts"
Loop LightCone = "loop"
HiddenShadow LightCone = "hidden_shadow"
IntheNameoftheWorld LightCone = "in_the_name_of_the_world"
ResolutionShinesAsPearlsofSweat LightCone = "resolution_shines_as_pearls_of_sweat"
WeWillMeetAgain LightCone = "we_will_meet_again"
Void LightCone = "void"
PatienceIsAllYouNeed LightCone = "patience_is_all_you_need"
)
// Erudition
const (
Passkey LightCone = "passkey"
DataBank LightCone = "data_bank"
BeforeDawn LightCone = "before_dawn"
TodayIsAnotherPeacefulDay LightCone = "today_is_another_peaceful_day"
TheSeriousnessofBreakfast LightCone = "the_seriousness_of_breakfast"
GeniusesRepose LightCone = "geniuses_repose"
NightontheMilkyWay LightCone = "night_on_the_milky_way"
TheBirthoftheSelf LightCone = "the_birth_of_the_self"
MaketheWorldClamor LightCone = "make_the_world_clamor"
Sagacity LightCone = "sagacity"
AnInstantBeforeAGaze LightCone = "an_instant_before_a_gaze"
)
// Harmony
const (
Chorus LightCone = "chorus"
MeshingCogs LightCone = "meshing_cogs"
CarvetheMoonWeavetheClouds LightCone = "carve_the_moon_weave_the_clouds"
MemoriesofthePast LightCone = "memories_of_the_past"
DanceDanceDance LightCone = "dance_dance_dance"
PlanetaryRendezvous LightCone = "planetary_rendezvous"
PastSelfinMirror LightCone = "past_self_in_mirror"
)
// Preservation
const (
MomentOfVictory LightCone = "moment_of_victory"
Amber LightCone = "amber"
DayOneofMyNewLife LightCone = "day_one_of_my_new_life"
Defense LightCone = "defense"
TextureofMemories LightCone = "texture_of_memories"
ThisIsMe LightCone = "this_is_me"
TrendoftheUniversalMarket LightCone = "trend_of_the_universal_market"
Pioneering LightCone = "pioneering"
WeAreWildfire LightCone = "we_are_wildfire"
LandausChoice LightCone = "landaus_choice"
)
// Abundance
const (
FineFruit LightCone = "fine_fruit"
Multiplication LightCone = "multiplication"
Cornucopia LightCone = "cornucopia"
WarmthShortensColdNights LightCone = "warmth_shortens_cold_nights"
PostOpConversation LightCone = "post_op_conversation"
SharedFeeling LightCone = "shared_feeling"
QuidProQuo LightCone = "quid_pro_quo"
PerfectTiming LightCone = "perfect_timing"
TimeWaitsforNoOne LightCone = "time_waits_for_no_one"
EchoesoftheCoffin LightCone = "echoes_of_the_coffin"
HeyOverHere LightCone = "hey_over_here"
)
func (l LightCone) String() string {
return string(l)
}