-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathLanguageAPI.cs
More file actions
47 lines (45 loc) · 1.53 KB
/
LanguageAPI.cs
File metadata and controls
47 lines (45 loc) · 1.53 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
using System;
using System.Collections.Generic;
using System.Text;
using RoR2;
namespace BazaarIsMyHome
{
class LanguageAPI
{
public static string NEWT_PRAY_FIRST_TIME = "NEWT_PRAY_FIRST_TIME";
public static string NEWT_PRAY_NORMAL = "NEWT_PRAY_NORMAL";
public static string NEWT_PRAY_ELITE = "NEWT_PRAY_ELITE";
public static string NEWT_PRAY_PECULIAR = "NEWT_PRAY_PECULIAR";
public static string NEWT_DEATH_STATE = "NEWT_DEATH_STATE";
public static string NEWT_DEATH_INFO = "NEWT_DEATH_INFO";
public static string[] NEWT_WELCOME_WORD = new string[]
{
"NEWT_WELCOME_WORD_1",
"NEWT_WELCOME_WORD_2",
"NEWT_WELCOME_WORD_3",
"NEWT_WELCOME_WORD_4",
"NEWT_WELCOME_WORD_5",
};
public static string[] NEWT_ANGRY_WELCOME_WORD = new string[]
{
"NEWT_ANGRY_WELCOME_WORD_1",
"NEWT_ANGRY_WELCOME_WORD_2",
"NEWT_ANGRY_WELCOME_WORD_3",
"NEWT_ANGRY_WELCOME_WORD_4",
"NEWT_ANGRY_WELCOME_WORD_5",
};
public static string[] NEWT_ATTACKED_WORD = new string[]
{
"NEWT_ATTACKED_WORD_1",
"NEWT_ATTACKED_WORD_2",
"NEWT_ATTACKED_WORD_3",
"NEWT_ATTACKED_WORD_4",
"NEWT_ATTACKED_WORD_5",
"NEWT_ATTACKED_WORD_6",
"NEWT_ATTACKED_WORD_7",
"NEWT_ATTACKED_WORD_8",
"NEWT_ATTACKED_WORD_9",
"NEWT_ATTACKED_WORD_10",
};
}
}