-
Notifications
You must be signed in to change notification settings - Fork 0
/
tables.js
42 lines (42 loc) · 1.95 KB
/
tables.js
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
var table = {
en: {
tmpl: '{tone} {symbol}',
symbols: ['Dragon', 'Wind', 'Night', 'Seed', 'Serpent', 'World bridger', 'Hand',
'Star', 'Moon', 'Dog', 'Monkey', 'Human', 'Skywalker', 'Wizard',
'Eagle', 'Warrior', 'Earth', 'Mirror', 'Storm', 'Sun'],
tones: ['Magnetic', 'Lunar', 'Electric', 'Self-existing', 'Overtone', 'Rhythmic',
'Resonant', 'Galactic', 'Solar', 'Planetary', 'Spectral', 'Cristal',
'Cosmic'],
colors: ['Red', 'White', 'Blue', 'Yellow'],
title: '{symbol}\'s wavespell',
donate: 'Donate',
link: 'Open @ 13lunas.net (spanish only)',
url: 'http://13lunas.net/umbral.htm?nombre=Hoy&dia={dia}&mes={mes}&ano={ano}&B1=Enviar'
},
es: {
tmpl: '{symbol} {tone}',
symbols: ['Dragón', 'Viento', 'Noche', 'Semilla', 'Serpiente', 'Enlazador de mundos', 'Mano',
'Estrella', 'Luna', 'Perro', 'Mono', 'Humano', 'Caminante del cielo', 'Mago',
'Águila', 'Guerrero', 'Tierra', 'Espejo', 'Tormenta', 'Sol'],
tones: {
femenine: ['Magnética', 'Lunar', 'Eléctrica', 'Autoexistente', 'Entonada', 'Rítmica',
'Resonante', 'Galáctica', 'Solar', 'Planetaria', 'Espectral', 'Cristal',
'Cósmica'],
masculine: ['Magnético', 'Lunar', 'Eléctrico', 'Autoexistente', 'Entonado', 'Rítmico',
'Resonante', 'Galáctico', 'Solar', 'Planetario', 'Espectral',
'Cristal', 'Cósmico']
},
colors: {
femenine: ['Roja', 'Blanca', 'Azul', 'Amarilla'],
masculine: ['Rojo', 'Blanco', 'Azul', 'Amarillo']
},
femenines: ['Noche', 'Semilla', 'Serpiente', 'Mano', 'Estrella', 'Luna', 'Águila', 'Tierra', 'Tormenta'],
title: {
femenine: 'Onda encantada de la {symbol}',
masculine: 'Onda encantada del {symbol}'
},
donate: 'Dona',
link: 'Abrir en 13lunas.net',
url: 'http://13lunas.net/umbral.htm?nombre=Hoy&dia={dia}&mes={mes}&ano={ano}&B1=Enviar'
}
}