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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
|
{
Color: {
black: {hex: "#000000ff" },
darkblue: {hex: "#1d2b53ff" },
darkpurple: {hex: "#7e2553ff" },
darkgreen: {hex: "#008751ff" },
brown: {hex: "#ab5236ff" },
grey: {hex: "#5f574fff" },
lightgrey: {hex: "#c2c3c7ff" },
white: {hex: "#fff1e8ff" },
red: {hex: "#ff004dff" },
orange: {hex: "#ffa300ff" },
yellow: {hex: "#ffec27ff" },
green: {hex: "#00e436ff" },
blue: {hex: "#29adffff" },
lavender: {hex: "#83769cff" },
pink: {hex: "#ff77a8ff" },
lightpeach: {hex: "#ffccaaff" }
},
TintedDrawable: {
tile_01: { color: { hex: "#ffa61bff" }, name: tile },
tile_02: { color: { hex: "#e98e42ff" }, name: tile },
tile_03: { color: { hex: "#00000055" }, name: tile },
tile_04: { color: { hex: "#00ff00ff" }, name: tile },
tile_05: { color: { hex: "#222222ff" }, name: tile },
white_tile: { color: { hex: "#ffffffff" }, name: tile },
board: { color: { hex: "#ffa61bff" }, name: tile },
shop_list: { color: {hex: "#e98e42ff" }, name: tile },
shop_item: { color: {hex: "#ffa61bff" }, name: tile },
window: { color: { hex: "#00000055" }, name: bg },
fill_circle: { color: { hex: "#00ff00ff" }, name: circle },
tint: { color: { hex: "#00000055" }, name: tile }
}
com.badlogic.gdx.graphics.g2d.BitmapFont: {
default: {
file: fnt/FontText.fnt,
scaledSize: 24
},
small: {
file: fnt/FontText.fnt,
scaledSize: 16
},
store_title: {
file: fnt/FontText.fnt,
scaledSize: 24
},
pixeled: {
file: fnt/MaxonMercutio.fnt,
scaledSize: 23
},
s-pixeled: {
file: fnt/MaxonMercutio.fnt,
scaledSize: 17
}
},
com.badlogic.gdx.scenes.scene2d.ui.Label$LabelStyle: {
default: { font: default, fontColor: lightgrey },
small-default: { font: small, fontColor: lightgrey }
small-pixeled: { font: s-pixeled, fontColor: lightgrey }
value: { font: default, fontColor: yellow }
debug: { font: pixeled, fontColor: green },
with_background: { font: default, fontColor: white, background: fg },
header: { font: default, fontColor: yellow },
header_with_bg: { font: default, fontColor: yellow, background: fg }
subheader: { font: default, fontColor: white },
subheader_with_bg: { font: default, fontColor: white, background: fg },
item_title: { font: small, fontColor: yellow },
item_price: { font: small, fontColor: white },
store_title: {
font: store_title,
fontColor: white
}
},
com.badlogic.gdx.scenes.scene2d.ui.TextButton$TextButtonStyle: {
default: {
font: default,
fontColor: white,
up: up,
down: down,
over: over,
disabled: bg
},
text: {
font: default,
fontColor: lightgrey,
overFontColor: white,
downFontColor: grey
}
}
com.badlogic.gdx.scenes.scene2d.ui.ImageButton$ImageButtonStyle: {
quit: { up: shutdown },
options: { up: options },
shop: { up: shop },
inventory: { up: inventory },
gift: { up: gift },
close: { up: close },
delete: { up: delete },
right_arrow: { up: right_arrow },
left_arrow: { up: left_arrow }
},
com.badlogic.gdx.scenes.scene2d.ui.Window$WindowStyle: {
dialog: {
background: bg,
titleFont: default
}
},
com.badlogic.gdx.scenes.scene2d.ui.ProgressBar$ProgressBarStyle: {
default-horizontal: {
background: tile_05,
knobBefore: tile_04
}
},
com.badlogic.gdx.scenes.scene2d.ui.TextField$TextFieldStyle: {
default: {
font: default,
fontColor: white,
background: fg
}
}
}
|