Advertisement
Nicbudd

Name Generator V0.2 B023

Apr 28th, 2015
247
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.96 KB | None | 0 0
  1. $include
  2.  
  3. $name : Word Generator v0.2 B025
  4. $author : Nicbudd
  5. $description : Generates possibly coherent words with the English Phonotactic rules.
  6.  
  7. $consd
  8. b
  9. c {25%}
  10. ch
  11. d
  12. f
  13. g {75%}
  14. h
  15. j {33%}
  16. k {50%}
  17. l
  18. m
  19. n
  20. p
  21. ph {10%}
  22. q {20%}
  23. qu {7%}
  24. r
  25. s
  26. sh
  27. t
  28. th
  29. v {50%}
  30. w {20%}
  31. wh {33%}
  32. x {5%}
  33. y {25%}
  34. z {20%}
  35.  
  36. $vowel
  37. a {64.297%}
  38. e
  39. i {54.842%}
  40. o {59.101%}
  41. u {21.713%}
  42.  
  43. $sonorant
  44. [vowel]
  45. [vowel]
  46. [vowel]
  47. [nasal]
  48. [glide]
  49. [liquid]
  50.  
  51. $nasal
  52. m {35.65%}
  53. n
  54. ng {20%}
  55.  
  56. $glide
  57. w
  58. y {83.609%}
  59.  
  60. $liquid
  61. l {67.029%}
  62. r
  63.  
  64. $stop
  65. p {21.301%}
  66. t
  67. k {8.525%}
  68. g {22.25%}
  69. b {16.475%}
  70. d {46.963%}
  71.  
  72. $fricative
  73. h {96.317%}
  74. f {35.214%}
  75. v {15.458%}
  76. th {30%}
  77. s
  78. z {1.170%}
  79. sh {20%}
  80.  
  81. $affricate
  82. ch
  83. j {15%}
  84.  
  85. $obstruent
  86. [affricate] {42.8%}
  87. [fricative]
  88. [stop]
  89.  
  90. $codafricative
  91. f {35.214%}
  92. v {15.458%}
  93. th {30%}
  94. s
  95. z {1.170%}
  96. sh {25%}
  97.  
  98. $onsetnasal
  99. m {35.65%}
  100. n
  101.  
  102. $nonvobstruent
  103. f
  104. s
  105. h
  106. k
  107. p
  108. b
  109.  
  110. //-------------------------------------------------------------------------------------------------------------------------------
  111.  
  112. $complexonset
  113. [obstruent][nonvobstruent]
  114. s[stop][[liquid]|[glide]]
  115.  
  116. //$complexcoda
  117.  
  118.  
  119. //-------------------------------------------------------------------------------------------------------------------------------
  120.  
  121. $initial
  122. [obstruent]
  123. [[onsetnasal]|[glide]|[liquid]]
  124.  
  125. $medial
  126. [glide]
  127. [liquid]
  128.  
  129. $onset
  130. [initial][medial] {40%}
  131. [initial]
  132. [complexonset]
  133. [medial] {20%}
  134.  
  135. $coda
  136. [nasal]
  137. [affricate] {66%}
  138. [stop]
  139. [stop]
  140. [stop]
  141. [codafricative]
  142. [codafricative]
  143. [codafricative]
  144. [liquid]
  145. //[complexcoda]
  146. //[complexcoda]
  147. //[complexcoda]
  148. //[complexcoda]
  149.  
  150. $nucleus
  151. [vowel]
  152.  
  153. $syl
  154. [onset][nucleus][coda]
  155. [onset][nucleus] {16.666%}
  156. [nucleus][coda] {66.667%}
  157. [nucleus] {33.333%}
  158.  
  159. //-------------------------------------------------------------------------------------------------------------------------------
  160.  
  161. $phrase
  162. [Syl] {50%}
  163. [Syl][syl]
  164. [Syl][syl][syl] {83.333%}
  165. [Syl][syl][syl][syl] {33.333%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement