Advertisement
plirof2

adventuron_initial_gr_script_v05g4.txt translated 231101

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