crazy.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101
  1. #!/usr/bin/env python3
  2. # -*- coding: utf-8 -*-
  3. """
  4. Created on MON APR 1 29:11:41 2019
  5. @author: moetom
  6. --------------------------------------------------------------------------
  7. This file is part of Verrücktes Gemüse.
  8. Verrücktes Gemüse is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation, either version 3 of the License, or
  11. (at your option) any later version.
  12. Verrücktes Gemüse is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. GNU General Public License for more details.
  16. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see <https://www.gnu.org/licenses/>.
  18. --------------------------------------------------------------------------
  19. """
  20. import mod.gemuese as gemuese
  21. import pygame.mixer as mixer
  22. mixer.init()
  23. """ Tomate """
  24. t1 = mixer.Sound("mod/crazy/tom_lachen.ogg")
  25. t2 = mixer.Sound("mod/crazy/tom_rot.ogg")
  26. t3 = mixer.Sound("mod/crazy/tom_zitronesein.ogg")
  27. t1s = "-lacht verrückt-"
  28. t2s = "Mhh, wenn du mich so anfasst werde ich ganz rot"
  29. t3s = "Ich bin sehr gerne eine Tomate. Aber eigentlich wollte ich eine Zitrone sein!"
  30. gemuese.tomate.AddVocab([t1, t2, t3], [t1s, t2s, t3s])
  31. """ Apfel """
  32. a1 = mixer.Sound("mod/crazy/apf_strom.ogg")
  33. a2 = mixer.Sound("mod/crazy/apf_schnip.ogg")
  34. a3 = mixer.Sound("mod/crazy/apf_iphone.ogg")
  35. a1s = "Bssst - Ich steh voll unter Strom!"
  36. a2s = "Schnip Schnip - Apfelmus!"
  37. a3s = "Mich kannst du essen, ein iPhone nicht."
  38. gemuese.apfel.AddVocab([a1, a2, a3], [a1s, a2s, a3s])
  39. """ Paprika """
  40. p1 = mixer.Sound("mod/crazy/pap_sauber.ogg")
  41. p2 = mixer.Sound("mod/crazy/pap_leiden.ogg")
  42. p3 = mixer.Sound("mod/crazy/pap_messer.ogg")
  43. p1s = "Hee, fass mich nicht an! Ich hoffe deine Hände sind sauber!"
  44. p2s = "Ich kann dich nicht leiden!"
  45. p3s = "Ey, ich hab heute noch ein Rendezvous. Mit einem Messer!"
  46. gemuese.paprika.AddVocab([p1, p2, p3], [p1s, p2s, p3s])
  47. """ Orange """
  48. o1 = mixer.Sound("mod/crazy/ora_schuetteln.ogg")
  49. o2 = mixer.Sound("mod/crazy/ora_furz.ogg")
  50. o3 = mixer.Sound("mod/crazy/ora_burp.ogg")
  51. o1s = "-schüttelt sich sabbernd-"
  52. o2s = "-furzt- Was kommt rein - Muss raus!"
  53. o3s = "-burp-"
  54. gemuese.orange.AddVocab([o1, o2, o3], [o1s, o2s, o3s])
  55. """ Zitrone """
  56. z1 = mixer.Sound("mod/crazy/zit_heiratebald.ogg")
  57. z2 = mixer.Sound("mod/crazy/zit_schmutzig.ogg")
  58. z3 = mixer.Sound("mod/crazy/zit_ohneschale.ogg")
  59. z4 = mixer.Sound("mod/crazy/zit_froh.ogg")
  60. z1s = "Hey Kartoffel, ich heirate bald."
  61. z2s = "Aber ich lade dich nicht ein. Weil du schmutzig bist."
  62. z3s = "Aber wenn du kommen willst, bitte nackt ohne Schale!"
  63. z4s = "Aber wirklich wenn du nakt kommst dann freue ich mich sehr! -jubel-"
  64. gemuese.zitrone.AddVocab([z1, z2, z3, z4], [z1s, z2s, z3s, z4s])
  65. """ Kartoffel """
  66. k1 = mixer.Sound("mod/crazy/kar_nakt.ogg")
  67. k2 = mixer.Sound("mod/crazy/kar_fett.ogg")
  68. k3 = mixer.Sound("mod/crazy/kar_ohja.ogg")
  69. k4 = mixer.Sound("mod/crazy/kar_fleisch.ogg")
  70. k1s = "OK! Dann komm ich nackt auf die Hochzeit."
  71. k2s = "Schnell, schnell, wirf mich ins heiße Fett! Los!"
  72. k3s = "OH JA! Ich mag es wenn du mich berührst!"
  73. k4s = "Mmhh, ich hab lust auf Fleisch!"
  74. gemuese.kartoffel.AddVocab([k1, k2, k3, k4], [k1s, k2s, k3s, k4s])