forked from Lunzir-0325/RoR2-BazaarIsMyHome
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathLanguageAPI.cs
More file actions
48 lines (47 loc) · 1.58 KB
/
LanguageAPI.cs
File metadata and controls
48 lines (47 loc) · 1.58 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
using RoR2;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
namespace BazaarIsMyHaven
{
class LanguageAPI
{
public static string NEWT_DONATE_LIST1 = "NEWT_DONATE_LIST1";
public static string NEWT_DONATE_LIST2 = "NEWT_DONATE_LIST2";
public static string NEWT_DONATE_LIST3 = "NEWT_DONATE_LIST3";
public static string NEWT_DONATE_LIST_CHARACTER = "NEWT_DONATE_LIST_CHARACTER";
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",
};
}
}