<?xml version="1.0" encoding="UTF-8" standalone="yes"?><oembed><version><![CDATA[1.0]]></version><provider_name><![CDATA[Hanami Devlog]]></provider_name><provider_url><![CDATA[https://electromagneticproject.wordpress.com]]></provider_url><author_name><![CDATA[push start to begin]]></author_name><author_url><![CDATA[https://electromagneticproject.wordpress.com/author/pushstarttobegin/]]></author_url><title><![CDATA[Five Petals]]></title><type><![CDATA[link]]></type><html><![CDATA[<p>A couple of the new tracks I&#8217;ve been working on are sounding pretty close to being finished, although at the moment there is a definite drop in quality from the first track. The &#8220;bamboo&#8221; track I&#8217;ve been trying to make has been taking the longest to finish, as it&#8217;s the most different. I&#8217;ve also started working on the boss theme, which has been fun. For this piece of music, I&#8217;m ignoring most of the rules I&#8217;ve read about pentatonic scales and traditional Japanese percussion, and simply tried to keep the themes running through the instruments I&#8217;m using and the way I&#8217;m using them. The Boss Theme is a little homage to Final Fantasy in a lot of ways, as I&#8217;ve taken inspiration from multiple Final Fantasy battle themes for the intro and from the Shinra theme from FFVII for the main drum rhythm.</p>
<p><span class="embed-youtube" style="text-align:center; display: block;"><iframe class='youtube-player' width='640' height='360' src='https://www.youtube.com/embed/bITrS-GQjAw?version=3&#038;rel=1&#038;showsearch=0&#038;showinfo=1&#038;iv_load_policy=1&#038;fs=1&#038;hl=en&#038;autohide=2&#038;wmode=transparent' allowfullscreen='true' style='border:0;' sandbox='allow-scripts allow-same-origin allow-popups allow-presentation'></iframe></span><br />
As the pieces are coming together, I&#8217;ve made myself a system in Game Maker to describe which background music to play in which room. Instead of stating the music that should be playing in every single individual room (as I have done for other things&#8230;) I&#8217;ve started the music playing in each main part of the level, and simply made sure it keeps playing even if buildings and caves are entered. To do this, I&#8217;ve made a basic script which is called when the player enters the main stage of each level called <em>soundInit</em>:</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg"><img loading="lazy" data-attachment-id="1535" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/soundinit/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg" data-orig-size="675,257" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="soundInit" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg?w=675" src="https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg?w=640&#038;h=243" alt="" title="soundInit" width="640" height="243" class="aligncenter size-full wp-image-1535" srcset="https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg?w=638&amp;h=243 638w, https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg?w=150&amp;h=57 150w, https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg?w=300&amp;h=114 300w, https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg 675w" sizes="(max-width: 640px) 100vw, 640px" /></a><br />
This states that if the music is not already playing, the music should play on a continual loop. This script also sets the global variable <em>music</em> from true to false, meaning that the music cannot be changed. When the player leaves the level, I&#8217;ve reset the variable to true so that a new piece of music can be played after the previous one has stopped! When this script is called in the level&#8217;s creation code, both of the arguments are defined. For example, in the first level the arguments are defined as:</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg"><img loading="lazy" data-attachment-id="1537" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/creation-code/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg" data-orig-size="675,212" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Creation Code" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg?w=675" src="https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg?w=640&#038;h=201" alt="" title="Creation Code" width="640" height="201" class="aligncenter size-full wp-image-1537" srcset="https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg?w=640&amp;h=201 640w, https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg?w=150&amp;h=47 150w, https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg?w=300&amp;h=94 300w, https://electromagneticproject.files.wordpress.com/2012/04/creation-code.jpg 675w" sizes="(max-width: 640px) 100vw, 640px" /></a></p>
<p>The other thing I&#8217;ve been working on today is the game&#8217;s petal system. I came up with this idea before I had any idea how to program it, so I&#8217;ve left it out until now. I&#8217;ve learned a lot from making the game&#8217;s menus and inventory systems, and this is basically an addition to the inventory system I&#8217;ve made so far. The idea is that each of the game&#8217;s characters gives you a petal that they have found, and five petals makes a whole blossom, which is added to the game score. I&#8217;ve had a space in the inventory for this for ages, which I&#8217;ve recently revamped to make it nicer:</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/revamped-inventory.jpg"><img loading="lazy" data-attachment-id="1539" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/revamped-inventory/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/revamped-inventory.jpg" data-orig-size="384,384" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Revamped Inventory" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/revamped-inventory.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/revamped-inventory.jpg?w=384" src="https://electromagneticproject.files.wordpress.com/2012/04/revamped-inventory.jpg?w=384&#038;h=384" alt="" title="Revamped Inventory" width="384" height="384" class="aligncenter size-full wp-image-1539" srcset="https://electromagneticproject.files.wordpress.com/2012/04/revamped-inventory.jpg 384w, https://electromagneticproject.files.wordpress.com/2012/04/revamped-inventory.jpg?w=150&amp;h=150 150w, https://electromagneticproject.files.wordpress.com/2012/04/revamped-inventory.jpg?w=300&amp;h=300 300w" sizes="(max-width: 384px) 100vw, 384px" /></a><br />
To test the system, I started using the Priest character, as he was the first character I made. I&#8217;ve renamed him <em>Bura-san</em> in the GDD. I&#8217;ve created two different variables that depict whether or not the character can give the player a petal, shown either as <em>flower_give = true</em> or <em>flower_give = false</em>. If the character&#8217;s petal hasn&#8217;t yet been added to the itemList DS list, then <em>flower_give</em> is true.</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg"><img loading="lazy" data-attachment-id="1541" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/flower-give/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg" data-orig-size="690,172" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Flower Give" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg?w=690" src="https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg?w=640&#038;h=159" alt="" title="Flower Give" width="640" height="159" class="aligncenter size-full wp-image-1541" srcset="https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg?w=638&amp;h=159 638w, https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg?w=150&amp;h=37 150w, https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg?w=300&amp;h=75 300w, https://electromagneticproject.files.wordpress.com/2012/04/flower-give.jpg 690w" sizes="(max-width: 640px) 100vw, 640px" /></a><br />
When the player talks to the character by pressing the X button, this activates the petal given by the character and changes the variable to false:</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg"><img loading="lazy" data-attachment-id="1542" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/flower-give-2/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg" data-orig-size="690,172" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Flower Give 2" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg?w=690" src="https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg?w=640&#038;h=159" alt="" title="Flower Give 2" width="640" height="159" class="aligncenter size-full wp-image-1542" srcset="https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg?w=638&amp;h=159 638w, https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg?w=150&amp;h=37 150w, https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg?w=300&amp;h=75 300w, https://electromagneticproject.files.wordpress.com/2012/04/flower-give-2.jpg 690w" sizes="(max-width: 640px) 100vw, 640px" /></a><br />
The petal given appears at the top of the screen, and can be seen in the petals section of the inventory.</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg"><img loading="lazy" data-attachment-id="1544" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/petal/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg" data-orig-size="768,618" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Petal" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg?w=768" src="https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg?w=640&#038;h=515" alt="" title="Petal" width="640" height="515" class="aligncenter size-full wp-image-1544" srcset="https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg?w=640&amp;h=515 640w, https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg?w=150&amp;h=121 150w, https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg?w=300&amp;h=241 300w, https://electromagneticproject.files.wordpress.com/2012/04/petal.jpg 768w" sizes="(max-width: 640px) 100vw, 640px" /></a><br />
<a href="https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg"><img loading="lazy" data-attachment-id="1545" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/petal-inv/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg" data-orig-size="768,618" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Petal Inv" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg?w=768" src="https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg?w=640&#038;h=515" alt="" title="Petal Inv" width="640" height="515" class="aligncenter size-full wp-image-1545" srcset="https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg?w=640&amp;h=515 640w, https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg?w=150&amp;h=121 150w, https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg?w=300&amp;h=241 300w, https://electromagneticproject.files.wordpress.com/2012/04/petal-inv.jpg 768w" sizes="(max-width: 640px) 100vw, 640px" /></a><br />
I&#8217;ve created three new global variables called &#8220;petalscore&#8221; 1, 2 and 3 &#8211; one for each level that the player can receive petals. When a petal is received, the petalscore value will increase by one depending on which room the player is in. </p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg"><img loading="lazy" data-attachment-id="1547" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/petal-gml/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg" data-orig-size="1189,404" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Petal GML" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg?w=1024" src="https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg?w=640&#038;h=217" alt="" title="Petal GML" width="640" height="217" class="aligncenter size-full wp-image-1547" srcset="https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg?w=640&amp;h=217 640w, https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg?w=150&amp;h=51 150w, https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg?w=300&amp;h=102 300w, https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg?w=768&amp;h=261 768w, https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg?w=1024&amp;h=348 1024w, https://electromagneticproject.files.wordpress.com/2012/04/petal-gml.jpg 1189w" sizes="(max-width: 640px) 100vw, 640px" /></a><br />
This is then drawn into the inventory, so the player will only be able to see their petal progress for the level they are currently in. When the petalscore reaches 5, one blossom will be added to that level&#8217;s gamescore, so in order for the player to collect all 30 blossoms, they will also have to collect all five petals in each level. However, the system still needs a lot of work, as my NPC characters currently don&#8217;t do very much. Ultimately, I would like to slow the whole process down so that when each character is spoken to, an animation plays where the character takes out a petal and holds it until the player takes it. This way the whole system seems a lot more obvious, as at the moment a petal simply pops up at the top of the screen without any explanation. I&#8217;m still working on the AI for most of my current characters too. Bura-san doesn&#8217;t move about, so he was easy to try out the system on. &#8220;Kaze&#8221; who I&#8217;ve renamed &#8220;Kyo&#8221; constantly moves away from the character, but currently gets stuck to walls&#8230;</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg"><img loading="lazy" data-attachment-id="1548" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/kyo/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg" data-orig-size="695,615" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Kyo" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg?w=695" src="https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg?w=640&#038;h=566" alt="" title="Kyo" width="640" height="566" class="aligncenter size-full wp-image-1548" srcset="https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg?w=640&amp;h=566 640w, https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg?w=150&amp;h=133 150w, https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg?w=300&amp;h=265 300w, https://electromagneticproject.files.wordpress.com/2012/04/kyo.jpg 695w" sizes="(max-width: 640px) 100vw, 640px" /></a><br />
The Panda character that I recently put in runs about frantically, but again sometimes seems to get stuck on uneven terrain. I like this character because there is no way of catching up with him, you have to chance running into him and pressing X at the right moment!</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg"><img loading="lazy" data-attachment-id="1550" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/panda-run/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg" data-orig-size="695,615" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Panda Run" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg?w=300" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg?w=695" src="https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg?w=640&#038;h=566" alt="" title="Panda Run" width="640" height="566" class="aligncenter size-full wp-image-1550" srcset="https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg?w=640&amp;h=566 640w, https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg?w=150&amp;h=133 150w, https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg?w=300&amp;h=265 300w, https://electromagneticproject.files.wordpress.com/2012/04/panda-run.jpg 695w" sizes="(max-width: 640px) 100vw, 640px" /></a></p>
<p>My latest character is called Koto, and is the game&#8217;s instrumentalist. She appears in the first three levels, and sits by her koto playing each level&#8217;s music. This character was originally going to be male and called Camui after the Japanese singer <a href="http://en.wikipedia.org/wiki/Gackt" target="_blank">Camui Gackt</a>, but when I checked on the internet for a character basis it seemed that koto players were generally women. I found a lot of images of koto players dressed in traditional Japanese <a href="http://en.wikipedia.org/wiki/Kimono" target="_blank">kimonos</a>, so my koto player is also dressed very traditionally.</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/koto.jpg"><img loading="lazy" data-attachment-id="1552" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/koto/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/koto.jpg" data-orig-size="540,563" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Koto" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/koto.jpg?w=288" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/koto.jpg?w=540" src="https://electromagneticproject.files.wordpress.com/2012/04/koto.jpg?w=287&#038;h=300" alt="" title="Koto" width="287" height="300" class="aligncenter size-medium wp-image-1552" srcset="https://electromagneticproject.files.wordpress.com/2012/04/koto.jpg?w=287&amp;h=300 287w, https://electromagneticproject.files.wordpress.com/2012/04/koto.jpg?w=144&amp;h=150 144w, https://electromagneticproject.files.wordpress.com/2012/04/koto.jpg 540w" sizes="(max-width: 287px) 100vw, 287px" /></a><br />
And in her pixel form:</p>
<p><a href="https://electromagneticproject.files.wordpress.com/2012/04/koto1.jpg"><img loading="lazy" data-attachment-id="1554" data-permalink="https://electromagneticproject.wordpress.com/2012/04/11/five-petals/koto-2/" data-orig-file="https://electromagneticproject.files.wordpress.com/2012/04/koto1.jpg" data-orig-size="93,63" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;}" data-image-title="Koto" data-image-description="" data-medium-file="https://electromagneticproject.files.wordpress.com/2012/04/koto1.jpg?w=93" data-large-file="https://electromagneticproject.files.wordpress.com/2012/04/koto1.jpg?w=93" src="https://electromagneticproject.files.wordpress.com/2012/04/koto1.jpg?w=93&#038;h=63" alt="" title="Koto" width="93" height="63" class="aligncenter size-full wp-image-1554" /></a><br />
All of these characters are placed in all three levels, but I&#8217;m hoping to create one unique character for each level to make up for the fifth petal.</p>
]]></html><thumbnail_url><![CDATA[https://electromagneticproject.files.wordpress.com/2012/04/soundinit.jpg?fit=440%2C330]]></thumbnail_url><thumbnail_width><![CDATA[]]></thumbnail_width><thumbnail_height><![CDATA[]]></thumbnail_height></oembed>