-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create Rake script (and unit test in Figure) to create Series and Fig…
…ure ref in database #5.
- Loading branch information
Showing
21 changed files
with
448 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,26 @@ | ||
class Figure < ActiveRecord::Base | ||
attr_accessible :creativity, :description, :name, :number, :series_id, :slogan, :speed, :strength, :url | ||
belongs_to :series | ||
|
||
# => {"plist"=>{"version"=>"1.0", "dict"=>{ | ||
#"key"=>["Name", "Index", "URL", "Slogan", "Description", "SkillStrength", "SkillCreativity", "SkillSpeed"], | ||
#"string"=>["Aztec Warrior", "http://minifigures.lego.com/en-us/Bios/Aztec%20Warrior.aspx", "No, you can’t have our gold! Go find your own!", "A mighty soldier of the sun, the Aztec Warrior is ... "], | ||
#"integer"=>["2", "4", "2", "3"]}}} | ||
def self.create_from_plist(plist_path) | ||
plist = Hash.from_xml(File.new(plist_path)) | ||
m = plist['plist']['dict'] | ||
s= m['string'] | ||
i = m['integer'] | ||
f = Figure.new | ||
f.name = s[0] | ||
f.number = i[0] | ||
f.url = s[1] | ||
f.slogan = s[2] | ||
f.description = s[3] | ||
f.strength = i[1] | ||
f.creativity = i[2] | ||
f.speed = i[3] | ||
return f | ||
end | ||
|
||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
require "rubygems" | ||
require "active_support" | ||
require "active_support/core_ext" | ||
|
||
|
||
desc "Add Figures in Database" | ||
task :figures => :environment do | ||
seriesIndexes = Dir.entries('public/lego/en/Informations/Series') | ||
seriesIndexes.each do |seriesIndex| | ||
i = seriesIndex.to_i | ||
if i > 0 && i < 99 | ||
series = Series.create!(:number => i) | ||
|
||
figurePathes = Dir["public/lego/en/Informations/Series/#{seriesIndex}/*.plist"] | ||
figurePathes.each do |p| | ||
f = Figure.create_from_plist(p) | ||
series.figures << f | ||
print f.name, "\n" | ||
end | ||
print "SERIES==", series.figures.count, "\n" | ||
end | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Aztec Warrior</string> | ||
<key>Index</key> | ||
<integer>2</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Aztec%20Warrior.aspx</string> | ||
<key>Slogan</key> | ||
<string>No, you can’t have our gold! Go find your own!</string> | ||
<key>Description</key> | ||
<string>A mighty soldier of the sun, the Aztec Warrior is one of the fierce Eagle Knights of the legendary Aztec Empire. Protected by his feathered shield and beaked helmet, he battles for the glory of his empire from sunrise to sunset, never stopping for food or rest as long as there are enemies to capture and the sun shines bright in the sky. | ||
And there certainly are plenty of enemies! For some reason, people are always trying to steal the empire’s gold. Sure, it’s pretty and you can make it into some nice, shiny weapons and armor, but the Aztec Warrior doesn’t really get what the big deal is with the stuff. Sometimes he wishes the invaders would only come at night so some other warriors could deal with them instead!</string> | ||
<key>SkillStrength</key> | ||
<integer>4</integer> | ||
<key>SkillCreativity</key> | ||
<integer>2</integer> | ||
<key>SkillSpeed</key> | ||
<integer>3</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Bagpiper</string> | ||
<key>Index</key> | ||
<integer>6</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Bagpiper.aspx</string> | ||
<key>Slogan</key> | ||
<string>And here’s a little ditty my ol’ granddad taught me!</string> | ||
<key>Description</key> | ||
<string>Bagpiping runs in the Bagpiper’s blood. His father played the bagpipes, and so did his grandfather, his great-grandfather and their grandfathers before them, all the way back to the day the beloved musical instrument first arrived in Scotland. | ||
He’s played his pipes for weddings, marches, wrestling matches and haggis-eating contests (he’s also played them at chess tournaments and libraries, but for some reason his enthusiastic performances didn’t go over so well then). Other musical styles may come and go, but the Bagpiper knows in his heart that the bagpipes will last forever!</string> | ||
<key>SkillStrength</key> | ||
<integer>1</integer> | ||
<key>SkillCreativity</key> | ||
<integer>4</integer> | ||
<key>SkillSpeed</key> | ||
<integer>2</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Bride</string> | ||
<key>Index</key> | ||
<integer>4</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Bride.aspx</string> | ||
<key>Slogan</key> | ||
<string>I do!</string> | ||
<key>Description</key> | ||
<string>The Bride has been busy getting ready for her big day! All of the invitations have been sent out, the floral arrangements are arranged, the banquet is prepared and the facilities are perfect. The cake has just the right number of layers, her gown and veil are as beautiful as she always dreamed they would be, and the groom looks so handsome in his tuxedo and bow tie. | ||
Everything is ready…now the wedding just needs to go off without any problems! What if a guest is allergic to the salad, or somebody drops the cake, or a swarm of bees goes after the flowers, or alien attack-bots crash in the middle of the ceremony? There’s so much that could go wrong today – here’s hoping it all works out!</string> | ||
<key>SkillStrength</key> | ||
<integer>1</integer> | ||
<key>SkillCreativity</key> | ||
<integer>3</integer> | ||
<key>SkillSpeed</key> | ||
<integer>2</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Bunny Suit Guy</string> | ||
<key>Index</key> | ||
<integer>3</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Bunny%20Suit%20Guy.aspx</string> | ||
<key>Slogan</key> | ||
<string>What kind of noise does a bunny make, anyway?</string> | ||
<key>Description</key> | ||
<string>Hippity-hop! Hippity-hop! Here he comes, hopping down the lane – it’s the happy, jolly Bunny Suit Guy! He’s got the whole outfit: the fuzzy white costume, the tall flappy ears, and even a big orange carrot to carry around. And what made him decide to dress up like a bunny? He has absolutely no idea!</string> | ||
<key>SkillStrength</key> | ||
<integer>1</integer> | ||
<key>SkillCreativity</key> | ||
<integer>2</integer> | ||
<key>SkillSpeed</key> | ||
<integer>1</integer> | ||
</dict> | ||
</plist> |
24 changes: 24 additions & 0 deletions
24
public/lego/en/Informations/Series/7/ComputerProgrammer.plist
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Computer Programmer</string> | ||
<key>Index</key> | ||
<integer>12</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Computer%20Programmer.aspx</string> | ||
<key>Slogan</key> | ||
<string>Hello, World</string> | ||
<key>Description</key> | ||
<string>Other computer whizzes can argue all they like about what kind of computer or operating system is the best one – the Computer Programmer knows that the only way to be a real expert is to master all of them. He knows everything there is to know about computers and how to use them, from the biggest old-time mainframes to the tiniest next-generation nanotech prototypes, and he’s always glad to share his expertise with anyone who needs his help – which is just about everyone eventually! | ||
He can debug a server in ten seconds flat, track down and wipe out even the toughest viruses, recover data from completely melted hard drives, and yes, he will help you set up your e-mail signature. In his spare time, he programs his own video games, catches up on the latest posts in his favorite web forums, and hangs out with his pet robo-cat. When you’re a skilled Computer Programmer, the future is always today!</string> | ||
<key>SkillStrength</key> | ||
<integer>1</integer> | ||
<key>SkillCreativity</key> | ||
<integer>3</integer> | ||
<key>SkillSpeed</key> | ||
<integer>4</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Daredevil</string> | ||
<key>Index</key> | ||
<integer>7</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Daredevil.aspx</string> | ||
<key>Slogan</key> | ||
<string>Stunts are easy…it’s all the other stuff that takes nerves of steel!</string> | ||
<key>Description</key> | ||
<string>No matter the stunt, no matter the danger, the dashing Daredevil risks it all for each and every spectacular show. Flaming hoops, long-distance canyon jumps and giant stomp-powered launchers are a breeze for this fearless fellow, who always keeps his cool in even the most perilous situations. | ||
It’s the normal, everyday situations that give him pause. Driving a motorcycle at full speed up a ramp and over a dozen garbage trucks is no problem – but buying stamps at the post office? Yikes! He’ll waterski blindfolded through a school of snapping cyber-sharks, but don’t ask him to find the beans at the grocery store, or he’ll run away screaming. It looks like the daring Daredevil has definitely picked the right line of work! | ||
Just make sure it’s the proper kind of gift. The Ocean King doesn’t take kindly to people who drop litter into his deep blue domain, and he’s been known to summon raging storms and whirlpools if he’s having a bad day, or even just a mild headache. It might sound like an overreaction, but you try wearing a crown made of pointy gold shells all the time and see how calm you feel!</string> | ||
<key>SkillStrength</key> | ||
<integer>2</integer> | ||
<key>SkillCreativity</key> | ||
<integer>3</integer> | ||
<key>SkillSpeed</key> | ||
<integer>4</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Evil Knight</string> | ||
<key>Index</key> | ||
<integer>14</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Evil%20Knight.aspx</string> | ||
<key>Slogan</key> | ||
<string>Surrender…to whichever boss I’m taking orders from today!</string> | ||
<key>Description</key> | ||
<string>The Evil Knight loves nothing better than looting, pillaging and laying waste to peaceful kingdoms. He’s worked for all of the big baddies over the years, from Basil the Bat Lord to Cedric the Bull. He even once spent a memorable summer as one of Vladek’s mystical Shadow Knights, and was delighted that he got to keep his glowing red eyes afterwards.</string> | ||
<key>SkillStrength</key> | ||
<integer>5</integer> | ||
<key>SkillCreativity</key> | ||
<integer>2</integer> | ||
<key>SkillSpeed</key> | ||
<integer>2</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Galaxy Patrol</string> | ||
<key>Index</key> | ||
<integer>8</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Galaxy%20Patrol.aspx</string> | ||
<key>Slogan</key> | ||
<string>No outer-space menace escapes the Galaxy Patrol!</string> | ||
<key>Description</key> | ||
<string>The members of the Galaxy Patrol are an elite squadron of deep-space heroes who are dispatched to the most remote and dangerous sectors of the galaxy to fight cosmic evil wherever it appears. With their heavy-duty space armor and helmet-mounted tactical computers, they’ve got the gear, the training and the attitude to always get the mission done. | ||
To join the Galaxy Patrol, you’ve got to be as tough as space-nails, able to resist the mind-control powers of a Pluuvian Brain-Beast, and capable of holding your breath in vacuum for at least 42 quarkoids. Most recruits wash out, but the ones that are left are the best of the best, ready to defend the universe from interstellar threats of any and every kind – no matter how many eyes, claws and tentacles they may have!</string> | ||
<key>SkillStrength</key> | ||
<integer>4</integer> | ||
<key>SkillCreativity</key> | ||
<integer>2</integer> | ||
<key>SkillSpeed</key> | ||
<integer>4</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Grandma Visitor</string> | ||
<key>Index</key> | ||
<integer>16</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Grandma%20Visitor.aspx</string> | ||
<key>Slogan</key> | ||
<string>Tra-la-la!</string> | ||
<key>Description</key> | ||
<string>The sweet little Grandma Visitor is skipping through the woods to pay a call on her dear old granny. With her fine red hood and a basket full of tasty treats, she’s sure she won’t run into any wicked wolves…or bands of forest bandits…or giant spiders…or nasty ogres…say, what was that noise over there behind that tree? | ||
Goodness, is that a raincloud up in the sky? Maybe this isn’t the very best day for a stroll outdoors. The woods do seem a little chilly, and it would be such a shame if she were to catch a cold. Besides, her grandmother has a whole pantry full of food already, not to mention a brand-new microwave oven. Yes, staying inside today sounds like a very good idea. She’ll try again tomorrow – and next time, she’ll bring some friends along for back-up!</string> | ||
<key>SkillStrength</key> | ||
<integer>1</integer> | ||
<key>SkillCreativity</key> | ||
<integer>3</integer> | ||
<key>SkillSpeed</key> | ||
<integer>2</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Hippie</string> | ||
<key>Index</key> | ||
<integer>11</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Hippie.aspx</string> | ||
<key>Slogan</key> | ||
<string>Make LEGO® models, not war!</string> | ||
<key>Description</key> | ||
<string>The friendly, good-natured Hippie loves everything in the entire world. Rain and shine, day and night, puppies and kittens – they all bring a happy smile to his face. With a fashion sense that hasn’t changed since the Sixties, he never stays in the same place for long, preferring to roam across city and countryside alike, stopping only to smell the flowers and spread his simple message of peace, love and LEGO bricks. | ||
As a pioneer of the Free-Building movement, the Hippie rejects all building instructions. Instead, he believes that true creativity lies in making a big pile of your bricks and putting them together in whatever way most inspires your imagination. According to him, it’s the ultimate groovy way to reveal your true inner soul as a builder!</string> | ||
<key>SkillStrength</key> | ||
<integer>1</integer> | ||
<key>SkillCreativity</key> | ||
<integer>3</integer> | ||
<key>SkillSpeed</key> | ||
<integer>2</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Jungle Boy</string> | ||
<key>Index</key> | ||
<integer>10</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Jungle%20Boy.aspx</string> | ||
<key>Slogan</key> | ||
<string>Oooo-aaaa-oooo-aaaa-ouch!</string> | ||
<key>Description</key> | ||
<string>Growing up in the jungle isn’t as easy as you might think – just ask the Jungle Boy! Being raised by a family of chimpanzees seems like a lot of fun, but you sure do end up eating a lot of bugs. And swinging around on vines sounds great until you realize how slippery they are and how far down the ground is. Yep, the jungle life might be full of fresh air and freedom, but it’s also full of scrapes and bruises a-plenty. | ||
It’s neat to be able to speak the languages of the beasts, but it’s not like they have anything really interesting to say…plus, talking to a leopard doesn’t keep it from trying to eat you. And do you know how hard it is to check your text messages way out here? All things considered, after a few more nights of sleeping in trees with nothing but a loincloth for warmth, the Jungle Boy might just start thinking about moving back to civilization!</string> | ||
<key>SkillStrength</key> | ||
<integer>5</integer> | ||
<key>SkillCreativity</key> | ||
<integer>1</integer> | ||
<key>SkillSpeed</key> | ||
<integer>4</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Ocean King</string> | ||
<key>Index</key> | ||
<integer>5</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Ocean%20King.aspx</string> | ||
<key>Slogan</key> | ||
<string>Beware the wrath of the lord of the seas – and no splashing in the pool!</string> | ||
<key>Description</key> | ||
<string>Ruler of a vast underwater kingdom, the Ocean King is the master of all the world’s seas. His enchanted trident gives him absolute control of the waves and tides, and woe to any sailor who dares to anger him! Fortunately, he’s easily appeased by rare treats from the surface world, and a cookie or pizza slice (no anchovies, please!) left in just the right tide pool will usually ensure a smooth and tranquil ocean voyage. | ||
Just make sure it’s the proper kind of gift. The Ocean King doesn’t take kindly to people who drop litter into his deep blue domain, and he’s been known to summon raging storms and whirlpools if he’s having a bad day, or even just a mild headache. It might sound like an overreaction, but you try wearing a crown made of pointy gold shells all the time and see how calm you feel!</string> | ||
<key>SkillStrength</key> | ||
<integer>4</integer> | ||
<key>SkillCreativity</key> | ||
<integer>3</integer> | ||
<key>SkillSpeed</key> | ||
<integer>4</integer> | ||
</dict> | ||
</plist> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | ||
<plist version="1.0"> | ||
<dict> | ||
<key>Name</key> | ||
<string>Rocker Girl</string> | ||
<key>Index</key> | ||
<integer>15</integer> | ||
<key>URL</key> | ||
<string>http://minifigures.lego.com/en-us/Bios/Rocker%20Girl.aspx</string> | ||
<key>Slogan</key> | ||
<string>I’m the best and I know it!</string> | ||
<key>Description</key> | ||
<string>Whatever you may say about the punky, pink-haired Rocker Girl, you can’t ever call her humble! From her clothes to her music, she goes through life with complete confidence in herself. She knows she looks and sounds awesome up there on stage with smoke and lasers flashing all around, and she lives for the way the crowd roars with excitement when she starts playing that next power chord. | ||
The Rocker Girl’s unshakeable self-confidence has always been her greatest strength. No matter what troubles she faces – cancelled shows, electrical failures and bad cases of rockin’ pneumonia – she always powers right on through, knowing that her next performance will be the greatest one yet. And the best thing of all is that she’s right!</string> | ||
<key>SkillStrength</key> | ||
<integer>1</integer> | ||
<key>SkillCreativity</key> | ||
<integer>4</integer> | ||
<key>SkillSpeed</key> | ||
<integer>3</integer> | ||
</dict> | ||
</plist> |
Oops, something went wrong.