Advertisement
plirof2

adventuron_initial_gr_script_v05g4.txt translated 231101

Oct 15th, 2023 (edited)
757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #Adventuron ΕΛΛΗΝΙΚΗ ΜΕΤΑΦΡΑΣΗ
  2.  
  3. #adventuron_initial_gr_script_v05g4.txt
  4. # Για μεταφραση ιδέες https://github.com/paravaariar/adventuron_french_notes
  5. # κωδικας εξτρα https://adventuron.io/documentation/cookbook.html (block location etc)
  6. start_at = outside_cave
  7.  
  8. ## Defines locations in the world - #Τοποθεσίες : Εδώ θα βάλετε όλες τις τοποθεσίες που θα έχει το παιχνίδι σας.
  9.  
  10. locations {
  11.    lakeside      : location "Είσαι δίπλα σε μια πανέμορφη λίμνη.." ;
  12.    outside_cave  : location "Είσαι έξω από μία σπηλιά. Η είσοδος είναι βόρεια." ;
  13.    treasure_room : location "Είσαι στο δωμάτιο του θησαυρού." ;
  14. }
  15.  
  16. # Defines things in the world (scenery cannot be carried). Αντικείμενα που έχει το παιχνίδι σας.
  17.  
  18. objects {
  19.    apple          : object  "ένα μήλο" msg="Νόστιμο." at = "lakeside" get_message = "πήρες το μήλο";
  20.    troll          : scenery " ένα τεράστιο Τρολ"  at = "outside_cave" msg="Πεινάει.";
  21.    lamp           : object "a lamp" at = "treasure_room" get_message = "You pick up the dusty lamp";
  22. }
  23.    
  24. connections {
  25.  
  26.    ## Connects locations together (bidirectional). Συνδέσεις τοποθεσίών.
  27.    
  28.    from, direction, to = [
  29.       lakeside,     north, outside_cave
  30.       outside_cave, north, treasure_room,
  31.    ]
  32. }
  33.  
  34. barriers {
  35.  
  36.    ## Blocks Access To Cave Whilst Troll Exists (with message)
  37.    
  38.    block_cave : block {
  39.       location           = treasure_room
  40.       message            = Το Τρολ φυλάει την σπηλιά .
  41.       block_when_exists  = troll
  42.       show_blocked_exit  = true
  43.    }
  44.    
  45. }
  46.  
  47. ## Print the objective when the game starts
  48.  
  49. on_startup {
  50.    : print "CAVE OF MAGIC !" ;
  51.    : print "ΕΞΕΡΕΥΝΗΣΤΕ ΤΟΝ ΧΩΡΟ." ;
  52.    : print "ΚΙΝΗΣΟΥ γράφοντας: Βόρεια(Β)/North,Ανατολικά(Α)/East,Δυτικά(Δ)/West, Νότια(Ν)/South." ;
  53.    : print "Μερικές από τις λέξεις που μπορείς να χρησιμοποιήσεις:  ΠΑΡΕ, ΡΙΞΕ, ΔΩΣΕ, ΤΣΕΠΕΣ, ΚΟΙΤΑ, ΔΕΣ, ΒΟΗΘΕΙΑ" ;
  54.    : press_any_key ;
  55. }
  56.  
  57. ## Execute this every time a player moves or redescribes a location
  58.  
  59. on_describe {
  60.    : if (is_at "treasure_room" ) {
  61.       : print "ΜΠΡΑΒΟ!! ΒΡΗΚΕΣ ΤΟΝ ΘΗΣΑΥΡΟ. ΚΕΡΔΙΣΕΣ!" ;
  62.       : win_game ;
  63.    }
  64. }
  65.  
  66. ## Test VERB NOUN that the player types and executes conditional actions
  67.  
  68. on_command {
  69. : match "help _"  {
  70.       : print "- Γράψε 'ΔΕΣ/ΚΟΙΤΑ/LOOK' για να ανανεωθεί η οθόνη " ;
  71.       : print "- Γράψε 'Β,Ν,Δ,Α' για να κινηθείς Βόρεια,Νότια,Δυτικά,Ανατολικά " ;
  72.       : print "- Γράψε 'Ι/ΤΣΕΠΕΣ/INVENTORY' για να δεις τι κρατάς " ;
  73.       : print "- Γράψε 'ΠΑΡΕ αντικείμενο' για να πάρεις το αντικείμενο " ;
  74.       : print "- Γράψε 'ΡΙΞΕ αντικείμενο' για να ρίξεις το αντικείμενο " ;
  75.       : print "- Γράψε 'ΔΩΣΕ κάτι ΣΕ κάποιον ' για να δώσεις ένα αντικείμενο σε κάποιον " ;
  76.       : print "- Γράψε 'SAVE/LOAD' για να αποθηκευσεις/επαναφέρεις την πρόοδο σου στο παιχνίδι" ;
  77.       }  
  78.  
  79.    : match "give apple"  {
  80.       : if (is_present "troll" && is_carried "apple") {
  81.          : print   "Το Τρολ τρώει το μήλο και φεύγει." ;
  82.          : destroy "apple" ;
  83.          : destroy "troll" ;
  84.       }
  85.    }
  86. }
  87.  
  88.  
  89.  
  90. vocabulary {
  91.  
  92.    // Here we assocated new words with the already supported english system vocab
  93.  //Εδώ βάζουμε συννώνυμες ή παρόμοιες λέξεις. Σημείωση: Γράφουμε την λέξη με τόνο και χωρίς τόνο. Επίσης με τελικό σ και τελικό ς .
  94.    : verb / aliases = [e,  Α ,ανατολικά ,ανατολικα  ]    
  95.    : verb / aliases = [south,   Ν ,Νότια ,Νοτια  ]  
  96.    : verb / aliases = [north,   Β ,Βόρεια ,ΒΟΡΕΙΑ  ]  
  97.    : verb / aliases = [west,   Δ ,Δυτικά ,δυτικά  ]  
  98.    : verb / aliases = [up,   Π,ΠΑΝΩ ,πάνω ,πανω  ]  
  99.    : verb / aliases = [down, Κ, ΚΑΤΩ,κάτω,κατω  ]  
  100.      
  101.    : verb / aliases = [examine,   εξέτασε,ΕΞΕΤΑΣΕ   ]
  102.    : verb / aliases = [get, ΠΑΡΕ, πάρε             ]
  103.    : verb / aliases = [give, ΔΩΣΕ, δώσε             ]
  104.    : verb / aliases = [drop,ρίξε,ριξε,αφησε,άφησε  ,    droptranslated      ]
  105.    : verb / aliases = [inventory,ι,τσέπες,τσεπες,τσέπεσ,τσεπεσ, inventorytranslated ]
  106.    : verb / aliases = [look, κοίτα,δες,δεσ,κοιτα ]
  107.    : verb / aliases = [quit,      quittranslated      ]
  108.    : verb / aliases = [help, βοήθεια,βοηθεια,     helptranslated      ]
  109.    : noun / aliases = [all, ΟΛΑ , όλα             ]
  110.    : noun / aliases = [apple,      μήλο , μηλο     ]
  111.    : noun / aliases = [troll,      ΤΡΟΛ , ΤΕΡΑΣ     ]  
  112.  
  113. }
  114.  
  115.  
  116. themes {
  117.    mytheme : theme {
  118.       # order of the compass directions matters, and must be translated in full (all 12)
  119.       system_messages {
  120.          #compass = [north, northeast, east, southeast, south, southwest,  west, northwest, up, down, inside, outside]      
  121.          compass = [Βόρεια, northeast, Ανατολικά, southeast, Νότια, southwest,  Δυτικά, northwest, up, down, inside, outside]
  122.          compass_short = [n, ne, e, se, s, sw, w, nw, u, d, in, out]
  123.          // MORE text to translate
  124.          all_treasures_found_win_game                   = Συγχαρητήρια, βρήκες όλους τους θησαυρούς. Κέρδισες!
  125.          already_in_container                           = ${entity} είναι ήδη μέσα στο ${entity2}.
  126.          ask_new_game                                   = Would you like to start a new game?
  127.          ask_quit                                       = Do you wish to quit the game?
  128.          be_more_specific                               = Πρέπει να γίνεις πιο συγκεκριμένος ...
  129.          cannot_carry_any_more                          = You cannot carry any more items.
  130.          cannot_carry_any_more_weight                   = It's too heavy for you to carry.
  131.         cant_see_one_of_those                          = You can't see one of those.
  132.          cant_take                                      = Δεν μπορείς να το πάρεις.
  133.          dont_have_one_of_those                         = You don't have one of those!
  134.         exit_list_additional_exits_are_located_verbose = Additional exits are located
  135.         exit_list_end_text                             =
  136.         exit_list_end_text_verbose                     = .
  137.         exit_list_from_here_you_can_go_verbose         = Μπορείς να πάς
  138.         exit_list_header_concise                       = Έξοδοι :
  139.         exit_list_last_sep_verbose                     =  and
  140.         exit_list_sep_verbose                          = ,
  141.         exit_list_there_are_no_obvious_exits           = Δεν βλέπεις κάποια προφανή έξοδο.
  142.         exit_list_to_the_verbose                       = to the
  143.         exit_list_you_can_also_go_verbose              = Μπορείς επίσης να πάς
  144.         gamebook_question                              = Select An Option ...
  145.         i_cant_do_that                                 = Όχι αυτή τη στιγμή.
  146.         invalid_choice                                 = Λάθος επιλογή.
  147.         inventory_list_empty                           = Τίποτα
  148.         inventory_list_end_text                        = .
  149.         inventory_list_final_separator                 =  and
  150.         inventory_list_header                          = Κουβαλάς:
  151.         inventory_list_header_verbose                  = Κουβαλάς
  152.         inventory_list_separator                       = ,
  153.         it_is_dark                                     = It is dark. You can't see a thing.
  154.          must_remove_first                              = Try taking it off first.
  155.          not_carried                                    = You can't ${verb} something you are not carrying.
  156.         not_present                                    = ${entity} is not here.
  157.         nothing_here                                   = Δεν υπάρχει τίποτα εδώ.
  158.         nothing_to_get                                 = You look around but can't see any ${noun} anywhere!
  159.          object_list_empty                              = Τίποτα
  160.          object_list_end_text                           = .
  161.          object_list_final_separator                    =  and
  162.          object_list_header                             = Βλέπεις :
  163.          object_list_header_verbose                     = Βλέπεις\s
  164.          object_list_separator                          = ,
  165.          ok                                             = OK
  166.          on_drop                                        = Αντικείμενο που έριξες\s: ${entity}.
  167.          on_get                                         = Αντικείμενο που πήρες: ${entity}.
  168.          on_put                                         = You put ${entity} inside ${entity2}.
  169.          on_put_non_container                           = ${entity} is not a container.
  170.          on_put_non_surface                             = ${entity} is not a surface.
  171.          on_remove                                      = You take off ${entity}.
  172.          on_wear                                        = Φόρεσες ${entity}.
  173.          post_quit                                      = You have quit the game.
  174.          prior_prompt                                   = Τι κάνουμε τώρα?
  175.          prompt                                         = >>
  176.          question_prompt_char                           = ?
  177.          there_is_nothing_you_can                       = Δεν υπάρχει τίποτα να ${verb} αυτή τη στιγμή.
  178.          treasure_message                               =
  179.          treasure_suffix                                =
  180.          unknown_noun                                   = Αυτό το παιχνίδι δεν χρησιμοποιεί την λέξη "${noun}".
  181.          unknown_verb                                   = Αυτό το παιχνίδι δεν χρησιμοποιεί την λέξη "${verb}".
  182.          worn_suffix                                    =  (worn)
  183.          you_already_wear                               = Το φοράς ήδη αυτό.
  184.          you_are_already_carrying                       = Έχεις ήδη ${entity}.
  185.          you_are_not_holding                            = Δεν κρατάς ${entity}.
  186.          you_cant_go_that_direction                     = Δεν μπορείς να πάς εκεί.
  187.          you_cant_wear                                  = You can't wear that.
  188.         you_cant_wear_anything_else                    = You can't wear anything else without removing something first.
  189.          you_dont_wear                                  = You are not wearing that.
  190.          you_see_nothing_special                        = Δεν βλέπεις τίποτα αξιόλογο.
  191.  
  192.       }
  193.    }
  194. }
  195.  
  196.  
  197.  
  198. assets {
  199.    graphics {
  200.      
  201.  
  202.  
  203.    }
  204. }
  205.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement