-
Notifications
You must be signed in to change notification settings - Fork 0
/
grammars.js
35 lines (31 loc) · 1.18 KB
/
grammars.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
var story = {
origin: "Pues, #opinion# #activity# #coz# es #mod# #posadj#",
opinion: ["Me gusta", "Me encanta", "Me mola", "Me flipa"],
activity: ["jugar a los videojuegos", "tocar la guitarra", "chatear con mis amigos", "ir de compras en el centro"],
coz: ["porque", "ya que", "dado que"],
mod: ["absolutamente", "indudablemente", "extremadamente", "verdaderamente"],
posadj: ["guay", "la leche entera ", "la bomba", "superdivertido", "alucinante"]
};
//alternative grammars
var story = {
origin: "#mascSing# #mascPlur# #femSing# #femPlur#",
mascSing: [El #nm# #adjm# #verbsingular#.],
};
var story = {
origin: "#origin1# #origin2#",
origin1: ["#suborigin1#", "#suborigin2#"],
origin2: ["#suborigin3#", "#suborigin4#"],
suborigin1: ["does"],
suborigin2: ["this"],
suborigin3: ["actually"],
suborigin4: ["work?"],
};
var story = {
origin: "#origin1# #origin2#",
origin1: "La #nf# #adjf#",
origin2: "El #nm# #adjm#",
nf: ["mesa", "tortilla", "campana"],
nm: ["perro", "gato", "cuchillo"],
adjf: ["gorda", "timida", "ondulada"],
adjm: ["gordo", "timido", "ondulado"],
};