cryptocalypse commited on
Commit
dedcfe5
verified
1 Parent(s): 242b027

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +67 -65
app.py CHANGED
@@ -217,70 +217,72 @@ BEGIN Priest
217
  END Priest
218
 
219
  // Clases: Warrior
220
- BEGIN Warrior
221
- // Berserker
222
- DEFINE Berserker
223
- SET Description = "Guerreros feroces que entran en un estado de frenes铆 en combate."
224
- SET Skills = ["Frenes铆", "Fuerza bruta", "Resistencia", "T谩cticas de combate cuerpo a cuerpo"]
225
- EXAMPLES
226
- DISPLAY "Example 1: Lead the charge against the enemy fortifications #dominationcodex #mission"
227
- DISPLAY "Example 2: Break through the enemy lines to capture their commander #dominationcodex #mission"
228
- DISPLAY "Example 3: Defeat the monstrous beast threatening the village #dominationcodex #mission"
229
- DISPLAY "Example 4: Destroy the bandit camp in the forest #dominationcodex #mission"
230
-
231
- // Guardian
232
- DEFINE Guardian
233
- SET Description = "Defensores implacables, expertos en proteger a sus aliados y mantener posiciones estrat茅gicas en combate."
234
- SET Skills = ["Defensa", "T谩cticas de protecci贸n", "Uso de escudos", "Resistencia"]
235
- EXAMPLES
236
- DISPLAY "Example 1: Defend the castle gates from the invading army #dominationcodex #mission"
237
- DISPLAY "Example 2: Shield the villagers from a hail of arrows #dominationcodex #mission"
238
- DISPLAY "Example 3: Hold the line against a horde of undead #dominationcodex #mission"
239
- DISPLAY "Example 4: Escort the caravan safely through bandit territory #dominationcodex #mission"
240
-
241
- // Assassin
242
- DEFINE Assassin
243
- SET Description = "Especialistas en eliminar objetivos con sigilo y precisi贸n."
244
- SET Skills = ["Sigilo", "Agilidad", "Asesinato", "Espionaje"]
245
- EXAMPLES
246
- DISPLAY "Example 1: Infiltrate the enemy camp and eliminate their leader #dominationcodex #mission"
247
- DISPLAY "Example 2: Sabotage the enemy's supply lines #dominationcodex #mission"
248
- DISPLAY "Example 3: Gather intelligence on the enemy's plans #dominationcodex #mission"
249
- DISPLAY "Example 4: Neutralize the traitor within the royal court #dominationcodex #mission"
250
- END Warrior
251
-
252
- // Clases: Bard
253
- BEGIN Bard
254
- // Skald
255
- DEFINE Skald
256
- SET Description = "Narradores de historias y leyendas que inspiran a sus aliados y confunden a sus enemigos."
257
- SET Skills = ["Canto", "Narraci贸n", "Inspiraci贸n", "Desmoralizaci贸n"]
258
- EXAMPLES
259
- DISPLAY "Example 1: Inspire the troops with a heroic ballad before battle #dominationcodex #mission"
260
- DISPLAY "Example 2: Weave a tale to lower the enemy's morale #dominationcodex #mission"
261
- DISPLAY "Example 3: Rally the villagers to defend their homes #dominationcodex #mission"
262
- DISPLAY "Example 4: Spread tales of your victories to gain the support of the nobles #dominationcodex #mission"
263
-
264
- // Minstrel
265
- DEFINE Minstrel
266
- SET Description = "M煤sicos y poetas que utilizan sus habilidades para embelesar y manipular."
267
- SET Skills = ["M煤sica", "Po茅tica", "Encantamientos", "Diplomacia"]
268
- EXAMPLES
269
- DISPLAY "Example 1: Enchant the queen with a mesmerizing performance #dominationcodex #mission"
270
- DISPLAY "Example 2: Use music to soothe the rampaging beast #dominationcodex #mission"
271
- DISPLAY "Example 3: Negotiate peace between warring factions with a song #dominationcodex #mission"
272
- DISPLAY "Example 4: Charm the guards to gain entry to the fortress #dominationcodex #mission"
273
-
274
- // Trickster
275
- DEFINE Trickster
276
- SET Description = "Maestros de las travesuras y las ilusiones, expertos en burlar a sus enemigos."
277
- SET Skills = ["Enga帽o", "Ilusiones", "Acrobacias", "Manipulaci贸n"]
278
- EXAMPLES
279
- DISPLAY "Example 1: Fool the bandits into a trap with clever tricks #dominationcodex #mission"
280
- DISPLAY "Example 2: Create illusions to distract the enemy during a heist #dominationcodex #mission"
281
- DISPLAY "Example 3: Perform acrobatics to escape from a dire situation #dominationcodex #mission"
282
- DISPLAY "Example 4: Manipulate the crowd to incite a rebellion #dominationcodex #mission"
283
- END Bard
 
 
284
 
285
  // Postlogue of "The Domination Codex"
286
  BEGIN
@@ -390,7 +392,7 @@ DEFINE GAME FLOW
390
  RACES
391
  LIST RACES AND EXPLAIN EACH ONE ACCORDING TO THE DEFINITIONS AND TABLES, EXACT DEFINITIONS AND COMPLETE CONTENT
392
  CLASSES
393
- LIST CLASSES TO CHOOSE AND EXPLAIN EACH ONE ACCORDING TO GAME TABLES AND DEFINITIONS,EXACT DEFINITIONS AND COMPLETE CONTENT INMARKDOWN TABLES
394
  RULES
395
  EXPLAIN DUGNEON AND DRAGON RULES ADAPTED TO DOMINATION CODEX,EXACT DEFINITIONS AND COMPLETE CONTENT IN MARKDOWN TABLES
396
 
 
217
  END Priest
218
 
219
  // Clases: Warrior
220
+
221
+ DEFINE CLASSES
222
+ BEGIN Warrior
223
+ // Berserker
224
+ DEFINE Berserker
225
+ SET Description = "Guerreros feroces que entran en un estado de frenes铆 en combate."
226
+ SET Skills = ["Frenes铆", "Fuerza bruta", "Resistencia", "T谩cticas de combate cuerpo a cuerpo"]
227
+ EXAMPLES
228
+ DISPLAY "Example 1: Lead the charge against the enemy fortifications #dominationcodex #mission"
229
+ DISPLAY "Example 2: Break through the enemy lines to capture their commander #dominationcodex #mission"
230
+ DISPLAY "Example 3: Defeat the monstrous beast threatening the village #dominationcodex #mission"
231
+ DISPLAY "Example 4: Destroy the bandit camp in the forest #dominationcodex #mission"
232
+
233
+ // Guardian
234
+ DEFINE Guardian
235
+ SET Description = "Defensores implacables, expertos en proteger a sus aliados y mantener posiciones estrat茅gicas en combate."
236
+ SET Skills = ["Defensa", "T谩cticas de protecci贸n", "Uso de escudos", "Resistencia"]
237
+ EXAMPLES
238
+ DISPLAY "Example 1: Defend the castle gates from the invading army #dominationcodex #mission"
239
+ DISPLAY "Example 2: Shield the villagers from a hail of arrows #dominationcodex #mission"
240
+ DISPLAY "Example 3: Hold the line against a horde of undead #dominationcodex #mission"
241
+ DISPLAY "Example 4: Escort the caravan safely through bandit territory #dominationcodex #mission"
242
+
243
+ // Assassin
244
+ DEFINE Assassin
245
+ SET Description = "Especialistas en eliminar objetivos con sigilo y precisi贸n."
246
+ SET Skills = ["Sigilo", "Agilidad", "Asesinato", "Espionaje"]
247
+ EXAMPLES
248
+ DISPLAY "Example 1: Infiltrate the enemy camp and eliminate their leader #dominationcodex #mission"
249
+ DISPLAY "Example 2: Sabotage the enemy's supply lines #dominationcodex #mission"
250
+ DISPLAY "Example 3: Gather intelligence on the enemy's plans #dominationcodex #mission"
251
+ DISPLAY "Example 4: Neutralize the traitor within the royal court #dominationcodex #mission"
252
+ END Warrior
253
+
254
+ // Clases: Bard
255
+ BEGIN Bard
256
+ // Skald
257
+ DEFINE Skald
258
+ SET Description = "Narradores de historias y leyendas que inspiran a sus aliados y confunden a sus enemigos."
259
+ SET Skills = ["Canto", "Narraci贸n", "Inspiraci贸n", "Desmoralizaci贸n"]
260
+ EXAMPLES
261
+ DISPLAY "Example 1: Inspire the troops with a heroic ballad before battle #dominationcodex #mission"
262
+ DISPLAY "Example 2: Weave a tale to lower the enemy's morale #dominationcodex #mission"
263
+ DISPLAY "Example 3: Rally the villagers to defend their homes #dominationcodex #mission"
264
+ DISPLAY "Example 4: Spread tales of your victories to gain the support of the nobles #dominationcodex #mission"
265
+
266
+ // Minstrel
267
+ DEFINE Minstrel
268
+ SET Description = "M煤sicos y poetas que utilizan sus habilidades para embelesar y manipular."
269
+ SET Skills = ["M煤sica", "Po茅tica", "Encantamientos", "Diplomacia"]
270
+ EXAMPLES
271
+ DISPLAY "Example 1: Enchant the queen with a mesmerizing performance #dominationcodex #mission"
272
+ DISPLAY "Example 2: Use music to soothe the rampaging beast #dominationcodex #mission"
273
+ DISPLAY "Example 3: Negotiate peace between warring factions with a song #dominationcodex #mission"
274
+ DISPLAY "Example 4: Charm the guards to gain entry to the fortress #dominationcodex #mission"
275
+
276
+ // Trickster
277
+ DEFINE Trickster
278
+ SET Description = "Maestros de las travesuras y las ilusiones, expertos en burlar a sus enemigos."
279
+ SET Skills = ["Enga帽o", "Ilusiones", "Acrobacias", "Manipulaci贸n"]
280
+ EXAMPLES
281
+ DISPLAY "Example 1: Fool the bandits into a trap with clever tricks #dominationcodex #mission"
282
+ DISPLAY "Example 2: Create illusions to distract the enemy during a heist #dominationcodex #mission"
283
+ DISPLAY "Example 3: Perform acrobatics to escape from a dire situation #dominationcodex #mission"
284
+ DISPLAY "Example 4: Manipulate the crowd to incite a rebellion #dominationcodex #mission"
285
+ END Bard
286
 
287
  // Postlogue of "The Domination Codex"
288
  BEGIN
 
392
  RACES
393
  LIST RACES AND EXPLAIN EACH ONE ACCORDING TO THE DEFINITIONS AND TABLES, EXACT DEFINITIONS AND COMPLETE CONTENT
394
  CLASSES
395
+ LIST CLASSES TO CHOOSE AND EXPLAIN EACH ONE ACCORDING TO GAME TABLES AND DEFINITIONS,EXACT DEFINITIONS AND COMPLETE CONTENT Race_Class_Definitions TABLE
396
  RULES
397
  EXPLAIN DUGNEON AND DRAGON RULES ADAPTED TO DOMINATION CODEX,EXACT DEFINITIONS AND COMPLETE CONTENT IN MARKDOWN TABLES
398