-
Notifications
You must be signed in to change notification settings - Fork 0
/
palabras.js
62 lines (61 loc) · 985 Bytes
/
palabras.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
export const WORDS =
[
[
'mitad',
'palma',
'topar',
'gusto',
'borde',
'tomar',
'bañar',
'carta',
'ceder',
'rozar',
'falla',
'sucio',
'chico',
'poder',
'sobra',
'tocar',
'éxito',
'pobre',
'lejos',
'cupla',
'gallo',
'antes',
'guapo',
'curso',
'arroz',
'ácido',
'justo'
],
[
'half, middle',
'palm tree',
'to run into, bump into',
'pleasure, taste, preference',
'edge',
'to take, drink',
'to bathe, take a bath',
'letter, (playing) card',
'to transfer, to give in',
'to touch (lightly)',
'flaw, failure',
'dirty, filthy',
'kid',
'to be able to, power',
'excess, surplus, leftover',
'to touch, play (instrument)',
'success',
'poor',
'far away',
'blame, fault',
'rooster',
'before',
'handsome, beautiful',
'course, direction',
'rice',
'acid',
'fair, just'
]
]