<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="zh-Hans-CN">
	<id>https://mineplugin.org/index.php?action=history&amp;feed=atom&amp;title=Magic%2FCustom_Wands</id>
	<title>Magic/Custom Wands - 版本历史</title>
	<link rel="self" type="application/atom+xml" href="https://mineplugin.org/index.php?action=history&amp;feed=atom&amp;title=Magic%2FCustom_Wands"/>
	<link rel="alternate" type="text/html" href="https://mineplugin.org/index.php?title=Magic/Custom_Wands&amp;action=history"/>
	<updated>2026-05-31T22:23:31Z</updated>
	<subtitle>本wiki上该页面的版本历史</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>https://mineplugin.org/index.php?title=Magic/Custom_Wands&amp;diff=15841&amp;oldid=prev</id>
		<title>炫宙菌：​创建页面，内容为“== Create Custom Wands ==  A &amp;quot;wand&amp;quot; in Magic is any item that can cast spells. Wands can also have a variety of other properties.  See here for customizati…”</title>
		<link rel="alternate" type="text/html" href="https://mineplugin.org/index.php?title=Magic/Custom_Wands&amp;diff=15841&amp;oldid=prev"/>
		<updated>2021-08-20T12:56:07Z</updated>

		<summary type="html">&lt;p&gt;创建页面，内容为“== Create Custom Wands ==  A &amp;quot;wand&amp;quot; in Magic is any item that can cast spells. Wands can also have a variety of other properties.  See here for customizati…”&lt;/p&gt;
&lt;p&gt;&lt;b&gt;新页面&lt;/b&gt;&lt;/p&gt;&lt;div&gt;== Create Custom Wands ==&lt;br /&gt;
&lt;br /&gt;
A &amp;amp;quot;wand&amp;amp;quot; in Magic is any item that can cast spells. Wands can also have a variety of other properties.&lt;br /&gt;
&lt;br /&gt;
See here for customization info: [[WandParameters|WandParameters]]&lt;br /&gt;
&lt;br /&gt;
== Creating a wand from scratch ==&lt;br /&gt;
&lt;br /&gt;
Holding any item that you&amp;#039;d like to make into a wand, use &amp;lt;code&amp;gt;/wand create&amp;lt;/code&amp;gt;. For example:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;/mgive wood_hoe:4&lt;br /&gt;
/wand create&amp;lt;/pre&amp;gt;&lt;br /&gt;
You now have a wand, but it doesn&amp;#039;t do anything useful and still looks like a hoe. If you&amp;#039;re making a normal spellcasting wand, it&amp;#039;s a good idea to &amp;#039;&amp;#039;inherit&amp;#039;&amp;#039; from the base wand config. Like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;/wand configure template base_wand&amp;lt;/pre&amp;gt;&lt;br /&gt;
This turns on the normal wand control scheme, and makes the wand bound and indestructible.&lt;br /&gt;
&lt;br /&gt;
You should get a message that the wand was bound to you, and the icon may change to a fancy wand icon if using the resource pack.&lt;br /&gt;
&lt;br /&gt;
Now you can add properties to the wand if you want:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;/wand unbind&lt;br /&gt;
/wand configure protection_falling 0.8&lt;br /&gt;
/wand add missile&lt;br /&gt;
/wand add fling&lt;br /&gt;
/wand configure mana_regeneration 40&lt;br /&gt;
/wand configure mana_max 200&lt;br /&gt;
/wand configure name Superwand&lt;br /&gt;
/wand configure description A super cool wand&amp;lt;/pre&amp;gt;&lt;br /&gt;
Hint: Try out tab-completion with wand commands, &amp;lt;code&amp;gt;/wand configure &amp;amp;lt;tab&amp;amp;gt;&amp;lt;/code&amp;gt; will list all options!&lt;br /&gt;
&lt;br /&gt;
That will add two spells, some fall protection, increase mana, and make the wand unbound.&lt;br /&gt;
&lt;br /&gt;
Now you can save your wand:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;/wand save superwand&amp;lt;/pre&amp;gt;&lt;br /&gt;
This wand is now available via /mgive, and can be used in crafting and other Magic configuration files just like any of the builtin wands.&lt;br /&gt;
&lt;br /&gt;
== Wands from Configuration Files ==&lt;br /&gt;
&lt;br /&gt;
To create new wand types, often you will want to make each wand have a unique progression, and keep its spells separate from other wands.&lt;br /&gt;
&lt;br /&gt;
See: [[Wands,-Classes-and-Paths|Wands, Classes and Paths]] for more info&lt;br /&gt;
&lt;br /&gt;
=== Custom Lore ===&lt;br /&gt;
&lt;br /&gt;
By default, wands will generate item lore based on wand properties. You can add a &amp;amp;quot;description&amp;amp;quot; property to the wand config that will go at the top, but everything else is auto-generated. &lt;br /&gt;
&lt;br /&gt;
If you&amp;#039;d prefer, you can add a &amp;amp;quot;lore&amp;amp;quot; string list to your wand configs. This will be used to generate the wand lore. You can add certain variables to the lore if you&amp;#039;d still like to use some autogenerated data, such as:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre class=&amp;quot;&amp;quot;&amp;gt;customlore:&lt;br /&gt;
&lt;br /&gt;
  inherit: wand&lt;br /&gt;
&lt;br /&gt;
  lore:&lt;br /&gt;
&lt;br /&gt;
  - This wand has&lt;br /&gt;
&lt;br /&gt;
  - completely&lt;br /&gt;
&lt;br /&gt;
  - custom&lt;br /&gt;
&lt;br /&gt;
  - lore&lt;br /&gt;
&lt;br /&gt;
  - $owner&lt;br /&gt;
&lt;br /&gt;
  - You can add variables like so&lt;br /&gt;
&lt;br /&gt;
  - $description&lt;br /&gt;
&lt;br /&gt;
  - $spells&lt;br /&gt;
&lt;br /&gt;
  - $brushes&lt;br /&gt;
&lt;br /&gt;
  - $mana_regeneration&lt;br /&gt;
&lt;br /&gt;
  - $path&lt;br /&gt;
&lt;br /&gt;
  - $mana_max&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>炫宙菌</name></author>
	</entry>
</feed>