Advertisement
Hugo7

recettes alcools

Jan 21st, 2016
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 3.49 KB | None | 0 0
  1. # name: Different names for bad/normal/good (Formatting codes possible: such as &6)
  2. # ingredients: List of material/amount
  3. # cookingtime: Time in real minutes ingredients have to boil
  4. # distillruns: How often it has to be distilled for full alcohol (0=without distilling)
  5. # wood: Wood of the barrel 0=any 1=Birch 2=Oak 3=Jungle 4=Spruce
  6. # age: Time in Minecraft-days, the potion has to age in a barrel 0=no aging
  7. # color: Color of the potion after distilling/aging. DARK_RED, RED, BRIGHT_RED, ORANGE, PINK, BLUE, CYAN, WATER, GREEN, BLACK, GREY, BRIGHT_GREY
  8. # difficulty: 1-10 accuracy needed to get good quality (1 = unaccurate/easy, 10 = very precise/hard)
  9. # alcohol: Absolute amount of alcohol 0-100 in a perfect potion (will be added directly to the player, where 100 means fainting)
  10. # effects: List of effect/duration  Special potion-effect when drinking, duration in sek. Suffix name with 'X' to hide effect from label. Sample: POISONX/10
  11. #   (WEAKNESS, INCREASE_DAMAGE, SLOW and SPEED are always hidden.)  Possible Effects: http://jd.bukkit.org/rb/apidocs/org/bukkit/potion/PotionEffectType.html
  12. #   instant effects (such as HEAL) _must!_ have defined the level instead of the duration!
  13.  
  14. recipes:
  15.    1:
  16.       name: -&8Biere degueulasse/-&fBiere de ble/-&6Biere de ble de luxe
  17.       ingredients:
  18.       - WHEAT/3
  19.       cookingtime: 8
  20.       distillruns: 0
  21.       wood: 1
  22.       age: 2
  23.       color: BRIGHT_GREY
  24.       difficulty: 1
  25.       alcohol: 5
  26.    2:
  27.       name: -&8Biere degueulasse/-&fBiere/-&6Biere de luxe
  28.       ingredients:
  29.       - WHEAT/6
  30.       cookingtime: 8
  31.       distillruns: 0
  32.       wood: 0
  33.       age: 3
  34.       color: ORANGE
  35.       difficulty: 1
  36.       alcohol: 6
  37.    3:
  38.       name: -&8Biere brune degueulasse/-&fAbshinte/-&6Meilleure abshinte
  39.       ingredients:
  40.       - WHEAT/6
  41.       cookingtime: 8
  42.       distillruns: 0
  43.       wood: 4
  44.       age: 8
  45.       color: BLACK
  46.       difficulty: 2
  47.       alcohol: 7
  48.    4:
  49.       name: -&8Awkward Mead/-&fMead/-&6Golden Mead
  50.       ingredients:
  51.       - SUGAR_CANE/6
  52.       cookingtime: 3
  53.       distillruns: 0
  54.       wood: 2
  55.       age: 4
  56.       color: ORANGE
  57.       difficulty: 2
  58.       alcohol: 9
  59.    5:
  60.       name: -&8Cidre affreux/-&fCidre doux/-&6Cidre doux et luxueux
  61.       ingredients:
  62.       - SUGAR_CANE/6
  63.       - APPLE/2
  64.       cookingtime: 4
  65.       distillruns: 0
  66.       wood: 2
  67.       age: 4
  68.       color: ORANGE
  69.       difficulty: 4
  70.       alcohol: 12
  71.       effects:
  72.      - WATER_BREATHINGX/150
  73.    6:
  74.       name: -&8Rhum affreux/-&fRhum epice (bon)/-&6Rhum raffine
  75.       ingredients:
  76.       - SUGAR_CANE/14
  77.       cookingtime: 5
  78.       distillruns: 2
  79.       wood: 2
  80.       age: 14
  81.       color: DARK_RED
  82.       difficulty: 6
  83.       alcohol: 30
  84.       effects:
  85.      - FIRE_RESISTANCE/100
  86.    7:
  87.       name: -&8Vodka pourrie/-&fVodka/-&6Vodka russe
  88.       ingredients:
  89.       - POTATO_ITEM/10
  90.       cookingtime: 15
  91.       distillruns: 3
  92.       age: 0
  93.       color: BRIGHT_GREY
  94.       difficulty: 4
  95.       alcohol: 20
  96.       effects:
  97.      - WEAKNESS/15
  98.       - POISON/10
  99.       - HEAL/2
  100.    8:
  101.       name: -&8Absinthe pauvre/-&fAbsinthe forte/-&6Absinthe d'Abbaye
  102.       ingredients:
  103.      - LONG_GRASS/15
  104.       cookingtime: 3
  105.       distillruns: 6
  106.       color: GREEN
  107.       difficulty: 8
  108.       alcohol: 45
  109.       effects:
  110.      - HEAL/1
  111.    9:
  112.       name: -&6Soupe de patate
  113.       ingredients:
  114.      - POTATO_ITEM/5
  115.       - LONG_GRASS/3
  116.       cookingtime: 3
  117.       color: ORANGE
  118.       difficulty: 1
  119.       effects:
  120.      - HEAL/1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement