Alchemist: Difference between revisions

From Citizens Wiki

(Created page with "{{Character | PICTURE = Alchemist.png | AUTHOR = aPunch | NAME = Alchemist | VERSION = 1.0 | CITIZENSBUILD = 2.0 | DEVSTATUS = InDev | DOWNLOADLINK = ht...")
 
No edit summary
 
(19 intermediate revisions by 4 users not shown)
Line 1: Line 1:
{{Character
{{Trait
| PICTURE      = Alchemist.png
| PICTURE      = Alchemist.png
| AUTHOR      = aPunch
| AUTHOR      = aPunch
| NAME        = Alchemist
| NAME        = Alchemist
| VERSION    = 1.0
| VERSION    = 1.1
| CITIZENSBUILD  = 2.0
| CITIZENSBUILD  = 2.0
| DEVSTATUS    = InDev
| DEVSTATUS    = InDev
| DOWNLOADLINK  = http://dev.bukkit.org/server-mods/Alchemist
| DEPENDS = None
| DOWNLOADLINK  = http://ci.citizensnpcs.co/view/Add-ons/job/Alchemist/
| DESCRIPTION  = Customizable Potion Recipes
| DESCRIPTION  = Customizable Potion Recipes
}}
}}
Alchemist is a Citizens 2.0 character trait that gives NPCs the ability to:
* Craft potions based on pre-defined recipes.
* Charge a fee for their service.
==How to Use==
==How to Use==
===General Information===
===General Information===
Line 16: Line 23:


===Interaction===
===Interaction===
Right-clicking the alchemist with the proper ingredients will remove them from your hand and give them to the alchemist. Once the recipe has been completely fulfilled, the alchemist will drop a potion around it's location. If the user walks too far away, the alchemist will stop brewing the potion and any items that were given to it will be lost.  
Right-clicking the alchemist with the proper ingredients will remove them from your hand and give them to the alchemist. Once the recipe has been completely fulfilled, the alchemist will drop a potion around it's location. If the user walks too far away, the alchemist will stop brewing the potion and any items that were given to it will be lost.


==Commands==
==Commands==
To use alchemist commands, you must have an NPC selected and be the owner of that NPC. There are no permission nodes required for commands.
{| class="wikitable collapsible collapsed" style="text-align: center; width: 100%"
|-
! style="width: 100%; background-color:#ADD8E6" colspan="6" | '''Alchemist Commands'''
|-
! style="width: 250px;" | Command
! Description
|-
| /alchemist help
| Show the help menu
|-
| /alchemist recipe
| Show the alchemist's current recipe
|-
| /alchemist recipe [name]
| Set an alchemist's current recipe.
|}
==Permissions==
To use alchemists, you only need one permission node. The permission node ''alchemist.interact'' allows a player to interact with an alchemist.


==Configuration==
==Configuration==
Line 24: Line 52:
===Default Configuration===
===Default Configuration===
Mouseover each section to view it's description.
Mouseover each section to view it's description.
<nowiki></nowiki># Alchemist Configuration
<nowiki></nowiki># Alchemist Configuration
<nowiki></nowiki>{{H:title|Recipes Block|recipes:}}
  {{H:title|Name of 1st recipe|default:}}
    {{H:title|Result section. Defines what happens when "example recipe" is used|result:}}
      {{H:title|What potion effect is the result|effect: fire-resistance}}
      {{H:title|Duration of the effect|duration: 60}}
      {{H:title|Amplifies the strength of the results - Valid values are 1 and 2|amplifier: 1}}
      {{H:title|Whether the potion is a splash potion|splash: false}}
    {{H:title|Ingredients section. Defines what ingredients are needed for this potion. All have to be present|ingredients:}}
      {{H:title|ID of the ingredient. NOT item/block ID|'0':}}
        {{H:title|Name of the ingredient|name: sugar}}
        {{H:title|Amount required|amount: 1}}
      {{H:title|ID of the ingredient. NOT item/block ID|'1':}}
        {{H:title|Name of the ingredient|name: glass-bottle}}
        {{H:title|Amount required|amount: 1}}
      {{H:title|ID of the ingredient. NOT item/block ID|'2':}}
        {{H:title|Name of the ingredient|name: wool}}
        {{H:title|Amount required|amount: 1}}
        {{H:title|Data of the item/block|data: 6}}
<nowiki></nowiki>{{H:title|Messages block|messages:}}
  {{H:title|Message sent to the player when they right click on the Alchemist|initialization-message: <nowiki><e>Hello there, <player>. Give me what I need and I will brew you a potion!</nowiki>}}
  {{H:title|Message sent to the player if the brewing was successful|success-message: <nowiki><e>I have combined the ingredients to concoct a potion of <a><potion><e>.</nowiki>}}
  {{H:title|Message sent to the player if they are still in the cool down period|cooldown-not-expired: You've already had your turn. Come back later!}}
<nowiki></nowiki>{{H:title|Time a player has to wait until they can use the alchemist again|cooldown-in-seconds: 60}}
 
==Valid Effects==
* ''speed'' - Increases movement speed.
* ''slow'' - Decreases movement speed.
* ''fast-digging'' - Increases dig speed.
* ''slow-digging'' - Decreases dig speed.
* ''increase-damage'' - Increases damage dealt.
* ''heal'' - Heals player instantly.
* ''harm'' - Harms player instantly.
* ''jump'' - Increases jump height.
* ''confusion'' - Warps vision on player's client.
* ''regeneration'' - Regenerates health.
* ''damage-resistance'' - Decreases damage dealt to the player.
* ''fire-resistance'' - Adds resistance to the effects of fire.
* ''water-breathing'' - Allows breathing underwater.
* ''blindness'' - Blinds the player.
* ''hunger'' - Increases hunger.
* ''weakness'' - Decreases damage dealt by player.
* ''poision'' - Deals damage to player over time.
 
[[Category:Characters]]
 
{{NavBox}}

Latest revision as of 05:42, 19 September 2013

Alchemist.png

Alchemist


Author aPunch
Version 1.1
Citizens build 2.0
Other dependencies None
Download Link
Description: Customizable Potion Recipes

Alchemist is a Citizens 2.0 character trait that gives NPCs the ability to:

  • Craft potions based on pre-defined recipes.
  • Charge a fee for their service.


How to Use

General Information

Alchemists provide the ability to create custom recipes for potions. You can customize these recipes in the configuration file. A default recipe is provided as an example.

Keep in mind, there is no way to view an alchemist's current recipe ingredients using this plugin. This is intentional, as you, the server admin, should be allowed total freedom to decide how you display recipes. You could show the ingredients using signs, another plugin, or not at all.

Interaction

Right-clicking the alchemist with the proper ingredients will remove them from your hand and give them to the alchemist. Once the recipe has been completely fulfilled, the alchemist will drop a potion around it's location. If the user walks too far away, the alchemist will stop brewing the potion and any items that were given to it will be lost.

Commands

To use alchemist commands, you must have an NPC selected and be the owner of that NPC. There are no permission nodes required for commands.

Permissions

To use alchemists, you only need one permission node. The permission node alchemist.interact allows a player to interact with an alchemist.

Configuration

The configuration file for Alchemists is found in /plugins/Alchemist/config.yml and is generated automatically when not present.

Default Configuration

Mouseover each section to view it's description.

# Alchemist Configuration
recipes:
 default:
   result:
     effect: fire-resistance
     duration: 60
     amplifier: 1
     splash: false
   ingredients:
     '0':
       name: sugar
       amount: 1
     '1':
       name: glass-bottle
       amount: 1
     '2':
       name: wool
       amount: 1
       data: 6
messages:
 initialization-message: <e>Hello there, <player>. Give me what I need and I will brew you a potion!
 success-message: <e>I have combined the ingredients to concoct a potion of <a><potion><e>.
 cooldown-not-expired: You've already had your turn. Come back later!
cooldown-in-seconds: 60

Valid Effects

  • speed - Increases movement speed.
  • slow - Decreases movement speed.
  • fast-digging - Increases dig speed.
  • slow-digging - Decreases dig speed.
  • increase-damage - Increases damage dealt.
  • heal - Heals player instantly.
  • harm - Harms player instantly.
  • jump - Increases jump height.
  • confusion - Warps vision on player's client.
  • regeneration - Regenerates health.
  • damage-resistance - Decreases damage dealt to the player.
  • fire-resistance - Adds resistance to the effects of fire.
  • water-breathing - Allows breathing underwater.
  • blindness - Blinds the player.
  • hunger - Increases hunger.
  • weakness - Decreases damage dealt by player.
  • poision - Deals damage to player over time.