ffxiv-lodestone 0.8.0 → 0.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
data/AUTHORS ADDED
@@ -0,0 +1,2 @@
1
+ Nicholas 'OwlManAtt' Evans <owlmanatt@gmail.com>
2
+ Stacey 'InfinityB' Ell <stacey.ell@gmail.com>
data/HISTORY ADDED
@@ -0,0 +1,4 @@
1
+ == 0.9.0 ==
2
+ * SkillList#list() changed to SkillList#levelled().
3
+ * Characters can be searched and loaded by name. See the README for directions on how to do this.
4
+ * Refactored, many things now extend hash.
data/LICENSE ADDED
@@ -0,0 +1,4 @@
1
+ The library is free to use, modify, redistribute, sell, or whatever. Go hog wild, just keep this
2
+ license notice around.
3
+
4
+ Authors can be seen in the AUTHORS file; they own the copyrights to this code.
data/README CHANGED
@@ -8,30 +8,59 @@ skills, of general pieces of profile data should automatically be handled by thi
8
8
 
9
9
  She ain't pretty, but it's decently robust.
10
10
 
11
+ == Installation ==
12
+ It's easy:
13
+
14
+ $ gem install ffxiv-lodestone
15
+
16
+ You will need to install the json (pure or extension) gem too. This isn't a dependency because I
17
+ don't know of a way to specify an either-or (json-pure or json the native extension) dependency.
18
+
11
19
  == Usage ==
12
20
  Take, for example, this character: <http://lodestone.finalfantasyxiv.com/rc/character/status?cicuid=1502635>
13
21
 
14
- To fire it up, call Character.new with the cicuid from that URL:
22
+ In its most simplistic instantiation, Character.new with the cicuid from that URL:
15
23
 
16
- require 'ffxiv_lodestone'
24
+ require 'rubygems'
25
+ require 'ffxiv-lodestone'
17
26
  char = FFXIVLodestone::Character.new(1502635)
18
27
 
28
+ However, you can also search by name and world. If you're doing name/world, you MUST specify both
29
+ of these options of you will get an exception.
30
+
31
+ char = FFXIVLodestone::Character.new(:name => 'Ayeron Lifebloom', :world => 'Figaro')
32
+
33
+ :siren: THERE ARE A NUMBER OF CAVEATS INVOLVED IN LOADING-BY-NAME :siren:
34
+
35
+ 1. This involves two HTTP GETs - one for the search page, and one for the profile page. If you
36
+ are integrating this in to forums or something, you ought to store the character_id number after
37
+ your first search and use that for subsequent requests.
38
+
39
+ 2. Lodestone's character search is slow to index new characters. It took about a day for my
40
+ character to show up.
41
+
42
+ 3. Character search has no way of specifying that you want to search for an exact name. If you
43
+ look up a character with a simple name, like 'Ab Lo', you get multiple search results. In the
44
+ event that the search has more than one result, an AmbiguousNameError will be raised. You will
45
+ have to request that character by the ID.
46
+
47
+ == Ghetto API Doc ==
19
48
  Stuff you can do:
20
49
 
21
50
  char.to_json => String containing a JSON representation of the character / jobs.
51
+ char.to_yaml => YAML representation of the character (EXPERIMENTAL).
22
52
 
23
53
  char.name, char.world, char.nameday, char.guardian, char.starting_city, char.physical_level,
24
- char.current_exp, char.exp_to_next_level, char.gender, char.race, char.clan
54
+ char.current_exp, char.exp_to_next_level, char.gender, char.race, char.clan, char.character_id
25
55
 
26
56
  char.skills => SkillList with these methods:
27
- .list => Array of all skills that have been leveled (ie rank 0 jobs omitted)
57
+ .levelled => Array of all skills that have been leveled (ie rank 0 jobs omitted)
28
58
  .pugilist (or any class name) => The skill, regardless of if its been leveled or not
29
59
  (ie you can explicitly ask for a skill to see if it's been leveled or not)
30
60
 
31
61
  char.resistances => StatList (same deal as stats but with fire instead of strength,
32
62
  see method list below)
33
63
  char.stats => StatList with these methods:
34
- .each {} => Does some iteration
35
64
  .strength (or any stat name) => Integer value of the state
36
65
 
37
66
  A skill object has these methods:
@@ -42,15 +71,15 @@ Q. Hey, why doesn't this have HP / MP / TP? They're on the character profile pag
42
71
  A. Because those values change based on the currently equipped job. I don't think they're useful
43
72
  pieces of data. If you have a use case for them, please let me know and I will include them.
44
73
 
74
+ == Contributing ==
75
+ If you want to fool around with the source code, you can see if you've fucked everything up:
76
+
77
+ ffxiv-lodestone$ gem install bacon
78
+ ffxiv-lodestone$ cd test/
79
+ ffxiv-lodestone$ bacon spec.rb
80
+
45
81
  == TODO ==
46
- * Error handling (if you put in a crap char ID you'll get some cryptic Nokogiri errors)
47
82
  * Figure out what the fuck the stats in parenthesis mean and do something with them.
48
83
  * Currently, these are dropped on the floor because I don't know what they mean. The current
49
84
  theories include 'Base (with gear)' and 'Stat (with buffs)'.
50
- * Make SkillList implement enumerable.
51
- * Character search by name in the constructor. Pending Lodestone's character search not randomly
52
- omitting people.
53
-
54
- == Author, License, Etc ==
55
- Copyright owlmanatt <owlmanatt@gmail.com> 2010. The library is free to use, modify, redistribute,
56
- sell, or whatever. Go hog wild, just keep this license notice around.
85
+ * Get the portrait URL & biography field (if present).
@@ -4,42 +4,89 @@ require 'open-uri'
4
4
  require 'json'
5
5
 
6
6
  module FFXIVLodestone
7
- VERSION = '0.8.0'
7
+ # Gem version.
8
+ VERSION = '0.9.0'
9
+
10
+ # Accept-language must be sent; their default is Japanese text.
11
+ HTTP_OPTIONS = {'Accept-Language' => 'en-us,en;q=0.5', 'Accept-Charset' => 'utf-8;q=0.5'}
12
+
13
+ # Search page server IDs.
14
+ SERVER_SEARCH_INDEXES = {:cornelia => 2, :kashuan => 3, :gysahl => 4, :mysidia => 5,
15
+ :istory => 6, :figaro => 7, :wutai => 8, :trabia => 9, :lindblum => 10, :besaid => 11,
16
+ :selbina => 12, :rabanastre => 13, :bodhum => 14, :melmond => 15, :palamecia => 16,
17
+ :saronia => 17, :fabul => 18}
18
+
19
+ # Alias the stupid names in Lodestone to class names.
20
+ SKILL_TO_CLASS = {
21
+ 'Hand-to-Hand' => :pugilist,
22
+ 'Sword' => :gladiator,
23
+ 'Axe' => :marauder,
24
+ 'Archery' => :archer,
25
+ 'Polearm' => :lancer,
26
+ 'Thaumaturgy' => :thaumaturge,
27
+ 'Conjury' => :conjurer,
28
+ 'Woodworking' => :carpenter,
29
+ 'Smithing' => :blacksmith,
30
+ 'Armorcraft' => :armorer,
31
+ 'Goldsmithing' => :goldsmith,
32
+ 'Leatherworking' => :leatherworker,
33
+ 'Clothcraft' => :weaver,
34
+ 'Alchemy' => :alchemist,
35
+ 'Cooking' => :culinarian,
36
+ 'Mining' => :miner,
37
+ 'Botany' => :botanist,
38
+ 'Fishing' => :fisher,
39
+ }
40
+
41
+ module Serializable
42
+ def to_yaml_properties
43
+ serialize_properties.map {|sym| "@%s" % sym }
44
+ end
45
+
46
+ def to_hash
47
+ serialize_properties.reduce(Hash.new) {|h,sym|
48
+ h[sym] = self.send(sym)
49
+ h
50
+ }
51
+ end
52
+
53
+ def to_h
54
+ to_hash
55
+ end
8
56
 
57
+ def to_json
58
+ self.to_hash.to_json
59
+ end
60
+ end
61
+
62
+ # Represents an FFXIV character. Example:
63
+ #
64
+ # FFXIVLodestone::Character.new(1015990)
9
65
  class Character
10
66
  class NotFoundException < RuntimeError
11
67
  end
12
68
 
13
- class StatList
14
- include Enumerable
15
- attr_reader :stats
69
+ class AmbiguousNameError < RuntimeError
70
+ end
16
71
 
72
+ class StatList < Hash
17
73
  def initialize(table)
18
- @stats = {}
19
-
20
74
  table.search('tr').each do |tr|
21
- @stats[tr.children[0].content.strip.downcase.to_sym] = tr.children[2].content.gsub("\302\240",' ').split(' ')[0].to_i
75
+ self[tr.children[0].content.strip.downcase.to_sym] = tr.children[2].content.gsub("\302\240",' ').split(' ')[0].to_i
22
76
  end
23
77
  end
24
78
 
25
- def each
26
- @stats.each {|stat| yield stat}
27
- end
28
-
29
- def to_h
30
- @stats
31
- end
32
-
33
79
  def method_missing(method)
34
- return @stats[method] if @stats.key? method
80
+ return self[method] if self.key? method
35
81
  super
36
82
  end
37
83
  end # StatList
38
84
 
39
- class SkillList
85
+ class SkillList < Hash
40
86
  class Skill
41
- attr_reader :name, :skill_name, :rank, :current_skill_points, :skillpoint_to_next_level
87
+ include Serializable
42
88
 
89
+ attr_reader :name, :skill_name, :rank, :current_skill_points, :skillpoint_to_next_level
43
90
  def initialize(job,skill_name,rank,cur_sp,skillup_sp)
44
91
  @name = job
45
92
  @skill_name = skill_name
@@ -48,40 +95,18 @@ module FFXIVLodestone
48
95
  @skillpoint_to_next_level = skillup_sp
49
96
  end # initalize
50
97
 
51
- def to_h
52
- {:name => @name, :skill_name => @skill_name, :rank => @rank, :current_skill_points => @current_skill_points, :skillpoint_to_next_level => @skillpoint_to_next_level}
98
+ def serialize_properties
99
+ [:name, :skill_name, :rank, :current_skill_points, :skillpoint_to_next_level]
53
100
  end
54
101
  end # Skill
55
102
 
56
- # Alias the stupid names in Lodestone to class names.
57
- SKILL_TO_CLASS = {
58
- 'Hand-to-Hand' => :pugilist,
59
- 'Sword' => :gladiator,
60
- 'Axe' => :marauder,
61
- 'Archery' => :archer,
62
- 'Polearm' => :lancer,
63
- 'Thaumaturgy' => :thaumaturge,
64
- 'Conjury' => :conjurer,
65
- 'Woodworking' => :carpenter,
66
- 'Smithing' => :blacksmith,
67
- 'Armorcraft' => :armorer,
68
- 'Goldsmithing' => :goldsmith,
69
- 'Leatherworking' => :leatherworker,
70
- 'Clothcraft' => :weaver,
71
- 'Alchemy' => :alchemist,
72
- 'Cooking' => :culinarian,
73
- 'Mining' => :miner,
74
- 'Botany' => :botanist,
75
- 'Fishing' => :fisher,
76
- }
77
-
78
103
  def initialize(skill_table)
79
104
  @skills = {}
80
105
 
81
106
  skill_table.children.each do |skill|
82
107
  name = skill.children[0].children[1].content
83
- if SKILL_TO_CLASS.key? name
84
- key = SKILL_TO_CLASS[name]
108
+ if FFXIVLodestone::SKILL_TO_CLASS.key? name
109
+ key = FFXIVLodestone::SKILL_TO_CLASS[name]
85
110
  job = key.to_s.capitalize
86
111
  else
87
112
  key = name.gsub('-', '_').downcase.to_sym
@@ -104,39 +129,44 @@ module FFXIVLodestone
104
129
  levelup_sp = sp.split('/')[1].strip.to_i
105
130
  end
106
131
 
107
- @skills[key] = Skill.new(job,name,rank,current_sp,levelup_sp)
132
+ self[key] = Skill.new(job,name,rank,current_sp,levelup_sp)
108
133
  end
109
134
  end # initialize
110
135
 
111
- # Lists all leveled jobs.
112
- def list
113
- list = []
114
- @skills.each do |name,skill|
115
- list << skill if skill.rank > 0
136
+ # Lists all leveled (rank > 0) jobs.
137
+ def levelled
138
+ self.keys.reduce(Array.new) do |a,key|
139
+ a << self.send(key) if self.send(key).rank > 0
140
+ a
116
141
  end
117
-
118
- return list
119
142
  end
120
143
 
121
- def to_h
122
- list = {}
123
- @skills.each {|job,data| list[job] = data.to_h}
124
-
125
- return list
126
- end
127
-
128
144
  def method_missing(method)
129
- return @skills[method] if @skills.key? method
145
+ return self[method] if self.key? method
130
146
  super
131
147
  end
132
-
133
148
  end # FFXIVLodestone::Character::SkillList
134
149
 
135
150
  attr_reader :skills, :stats, :resistances, :profile
136
- def initialize(character_id)
151
+ def initialize(args={})
152
+ unless args.class == Hash
153
+ character_id = args
154
+ else
155
+ if args.key? :id
156
+ character_id = args[:id]
157
+
158
+ raise ArgumentError, 'No other arguments may be specified in conjunction with :id.' if args.size > 1
159
+ else
160
+ if args.key? :name and args.key? :world
161
+ character_id = determine_character_id(args[:name],args[:world])
162
+ else
163
+ raise ArgumentError, 'Neither :id or :name && :world have been specified.'
164
+ end
165
+ end
166
+ end
167
+
137
168
  @character_id = character_id
138
-
139
- doc = Nokogiri::HTML(open("http://lodestone.finalfantasyxiv.com/rc/character/status?cicuid=#{@character_id}", {'Accept-Language' => 'en-us,en;q=0.5', 'Accept-Charset' => 'utf-8;q=0.5'}))
169
+ doc = Nokogiri::HTML(get_profile_html(@character_id))
140
170
 
141
171
  # Did we get an error page? Invalid ID, etc.
142
172
  if !((doc.search('head title').first.content.match /error/i) == nil)
@@ -184,8 +214,11 @@ module FFXIVLodestone
184
214
  race_line = race_line.first.split ' '
185
215
  @profile[:gender] = race_line.pop
186
216
  @profile[:clan] = race_line.join ' '
217
+
218
+ @profile[:character_id] = @character_id.to_i
187
219
  end
188
220
 
221
+ # Returns first name / last name seperated by a space.
189
222
  def name
190
223
  "#{@profile[:first_name]} #{@profile[:last_name]}"
191
224
  end
@@ -193,9 +226,9 @@ module FFXIVLodestone
193
226
  def to_json
194
227
  data = {}
195
228
  data.merge!(@profile)
196
- data[:jobs] = @skills.to_h
197
- data[:attributes] = @stats.to_h
198
- data[:resistances] = @resistances.to_h
229
+ data[:jobs] = @skills
230
+ data[:attributes] = @stats
231
+ data[:resistances] = @resistances
199
232
 
200
233
  data.to_json
201
234
  end
@@ -204,5 +237,35 @@ module FFXIVLodestone
204
237
  return @profile[method] if @profile.key? method
205
238
  super
206
239
  end
240
+
241
+ protected
242
+ # This method can be redefined in a test class.
243
+ def get_profile_html(id)
244
+ open("http://lodestone.finalfantasyxiv.com/rc/character/status?cicuid=#{id}", FFXIVLodestone::HTTP_OPTIONS)
245
+ end
246
+
247
+ # Another method to redefine in the test file...
248
+ def get_search_html(name,world_id)
249
+ open(URI.encode("http://lodestone.finalfantasyxiv.com/rc/search/search?tgt=77&q=#{name}&cw=#{world_id}"), FFXIVLodestone::HTTP_OPTIONS)
250
+ end
251
+
252
+ def determine_character_id(name,world)
253
+ # TODO This should be more robust ... somehow. The search page uses indexes assigned in
254
+ # a dropdown and I just copied them in to a constant. It's going to fuck up if they
255
+ # release new realms.
256
+ raise ArgumentError, 'Unknown world server.' unless FFXIVLodestone::SERVER_SEARCH_INDEXES.key? world.downcase.to_sym
257
+ doc = Nokogiri::HTML(get_search_html(name,FFXIVLodestone::SERVER_SEARCH_INDEXES[world.downcase.to_sym]))
258
+
259
+ # Results table should have two TRs if the search has found a unique character -
260
+ # one TR for headers and one TR with the character info. If nothing was found, the
261
+ # resul table is not even present.
262
+ results = doc.search("table.contents-table1 tr th[contains('Character Name')]")
263
+ raise NotFoundException, 'Character search yielded no results.' if results.empty?
264
+
265
+ results = results.last.parent.parent
266
+ raise AmbiguousNameError, 'Character search turned up multiple results.' if results.children.length > 2
267
+
268
+ return results.search('tr:last a').first.attr('href').gsub('/rc/character/top?cicuid=','')
269
+ end
207
270
  end # character
208
271
  end # end FFXIVLodestone
@@ -0,0 +1,1761 @@
1
+ <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
2
+ <html>
3
+ <head>
4
+
5
+ <meta http-equiv="content-Type" content="text/html; charset=UTF-8" />
6
+ <meta http-equiv="content-Style-type" content="text/css" />
7
+ <meta http-equiv="content-Script-type" content="text/javascript" />
8
+
9
+ <link rel="shortcut icon" href="http://static.finalfantasyxiv.com/favicon.ico">
10
+
11
+ <link rel="stylesheet" type="text/css" href="http://static.finalfantasyxiv.com/global/css/basic.css?_v=4mk" /><link rel="stylesheet" type="text/css" href="http://static.finalfantasyxiv.com/global/css/common/default/base.css?_v=4mk" /><link rel="stylesheet" type="text/css" href="http://static.finalfantasyxiv.com/global/css/en/default/base.css?_v=4mk" /><link rel="stylesheet" type="text/css" href="http://static.finalfantasyxiv.com/community/css/common/default/base.css?_v=4mk" /><link rel="stylesheet" type="text/css" href="http://static.finalfantasyxiv.com/community/css/en/default/base.css?_v=4mk" /><script type="text/javascript" src="http://static.finalfantasyxiv.com/js/conf/init.js?_v=4mk"></script><script type="text/javascript">
12
+ var userToken = '';
13
+ </script>
14
+
15
+ <style type="text/css">
16
+ /* パラメータラベル */
17
+ .param-label {
18
+ height : 18px;
19
+ padding : 0 0 0 20px;
20
+ background-repeat : no-repeat;
21
+ background-position : 1px 1px;
22
+ }
23
+ /* メインスキルラベル */
24
+ .mainskill-label {
25
+ height : 36px;
26
+ background-repeat : no-repeat;
27
+ background-position : 1px 2px;
28
+ }
29
+ .paddingR {
30
+ padding-right : 5px;
31
+ }
32
+
33
+ .profile-plate {
34
+ width : 540px;
35
+ height : 230px;
36
+ }
37
+ #profile-plate0 {/* 未設定 */
38
+ background-image : url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/characterStatus/profilePlate/none.png);
39
+ }
40
+ #profile-plate1 {/* リムサロミンサ */
41
+ background-image : url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/characterStatus/profilePlate/limsa.png);
42
+ }
43
+ #profile-plate2 {/* グリダニア*/
44
+ background-image : url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/characterStatus/profilePlate/gridania.png);
45
+ }
46
+ #profile-plate3 {/* ウルダハ */
47
+ background-image : url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/characterStatus/profilePlate/uldah.png);
48
+ }
49
+ #charname {
50
+ height : 27px;
51
+ }
52
+ #charname div {
53
+ font-weight : bold;
54
+ padding : 5px 0 0 8px;
55
+ }
56
+
57
+ #profile {
58
+ padding : 5px 0 0 7px;
59
+ }
60
+
61
+ #profile-table {
62
+ margin : 0 0 0 5px;
63
+ }
64
+ #profile-table td {
65
+ color : #fff;
66
+ line-height : 140%;
67
+ }
68
+ #profile-table th {
69
+ color : #FFE97E;
70
+ font-weight : normal;
71
+ text-align : left;
72
+ line-height : 140%;
73
+ }
74
+
75
+ .guard,.skill {
76
+ width : 32px;
77
+ height : 32px;
78
+ }
79
+ /* 守護神 */
80
+ #guard1 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/halone.png)}
81
+ #guard2 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/menphina.png)}
82
+ #guard3 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/thaliak.png)}
83
+ #guard4 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/nymeia.png)}
84
+ #guard5 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/llymlaen.png)}
85
+ #guard6 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/oschon.png)}
86
+ #guard7 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/byregot.png)}
87
+ #guard8 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/rhalgr.png)}
88
+ #guard9 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/azeyma.png)}
89
+ #guard10 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/naldthal.png)}
90
+ #guard11 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/nophica.png)}
91
+ #guard12 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/guardian/althyk.png)}
92
+
93
+ /* メインスキル */
94
+ #gla, #skill3 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/gladiator.png)}
95
+ #arc, #skill7 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/archer.png)}
96
+ #lnc, #skill8 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/lancer.png)}
97
+ #mrd, #skill4 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/marauder.png)}
98
+ #pgl, #skill2 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/pugilist.png)}
99
+ #thm, #skill22 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/thaumaturge.png)}
100
+ #con, #skill23 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/conjurer.png)}
101
+ #bsm, #skill30 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/blacksmith.png)}
102
+ #wvr, #skill34 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/weaver.png)}
103
+ #tan, #skill33 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/tanner.png)}
104
+ #min, #skill39 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/miner.png)}
105
+ #btn, #skill40 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/harvester.png)}
106
+ #crp, #skill29 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/carpenter.png)}
107
+ #arm, #skill31 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/armorer.png)}
108
+ #gld, #skill32 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/goldsmith.png)}
109
+ #fsh, #skill41 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/fisher.png)}
110
+ #cul, #skill36 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/culinarian.png)}
111
+ #alc, #skill35 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/alchemist.png)}
112
+ #snt, #skill10 {background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/mainskill/sentinel.png)}
113
+ </style>
114
+ <title>
115
+ FINAL FANTASY XIV, The Lodestone</title>
116
+
117
+ </head>
118
+ <body>
119
+
120
+ <!-- #bg -->
121
+
122
+ <div id="bg" class="character logout characterpage other">
123
+
124
+ <!-- #bg2 -->
125
+ <div id="bg2" class=" characterpage">
126
+
127
+ <!-- #wrap -->
128
+ <div id="wrap">
129
+
130
+ <!-- コーポレートヘッダー -->
131
+ <script type="text/javascript" src="http://static.finalfantasyxiv.com/global/js/mini/common/sqexheader.js?_v=4mk"></script><!-- #wrap-header -->
132
+ <div id="wrap-header">
133
+
134
+ <form id="logoutForm" name="logoutForm" action="/rc/logout" method="POST" class="hide"><input type="hidden" name="_ut" value="" id="logoutForm__ut"/></form>
135
+
136
+
137
+
138
+ <script type="text/javascript">
139
+ <!-- ログアウト -->
140
+ function toLogout() {
141
+ document.getElementById("logoutForm").submit();
142
+ };
143
+
144
+ <!-- 現在のタイムゾーンID -->
145
+ var currentTimezoneID = 'CST';
146
+ </script>
147
+
148
+ <div id="wrap-header-image">
149
+
150
+ <!-- ロゴ -->
151
+ <div id="wrap-header-logo"></div>
152
+
153
+ <!-- ログインしている時だけログアウトボタンを表示 -->
154
+ <!-- タイムゾーンのクッキーが未設定の場合 -->
155
+ <!-- タイムゾーンポップアップ -->
156
+ <div id="timezonePopup">
157
+ <div id="timezonePopupMsg">
158
+ Current Time Zone:<br />(GMT-06:00) Central Time (US and Canada)</div>
159
+ <div id="timezonePopupBtn">
160
+ <a href="javascript:setCurrentTimeZone()" id="btSetTimezone" class="button" style="float:left"></a>
161
+ <a href="javascript:showTimeZoneWindow()" id="btChangeTimezone" class="button" style="float:left"></a>
162
+ </div>
163
+ </div><!-- タイムゾーンポップアップ -->
164
+ </div>
165
+
166
+ <!-- 簡易検索エリア -->
167
+ <div id="wrap-header-news">
168
+ <form id="headerSearchForm" name="headerSearchForm" action="/rc/search/search" method="GET"><div id="simple-search">
169
+ <input type="text" name="q" maxlength="100" value="" id="simple-search-input" class=""/><a id="btSimpleSearch" class="button" href="javascript:;" onclick="document.getElementById('headerSearchForm').submit()"></a>
170
+ <a id="btSimpleSearchChara" class="button" href="/rc/search/characterForm"></a>
171
+ </div>
172
+ </form>
173
+
174
+
175
+
176
+ <div class="floatEnd"></div>
177
+ </div><!-- 簡易検索エリア -->
178
+ </div><!-- #wrap-header -->
179
+
180
+ <!-- #wrap-body -->
181
+ <div id="wrap-body">
182
+
183
+ <!-- ======================================================================= -->
184
+ <!-- サイドメニュー -->
185
+ <!-- ======================================================================= -->
186
+ <!--◎◎◎
187
+ 画面左に表示される縦のメニューです。内部で状態を切り替えられるようにしてください。
188
+ ログイン、ログアウト、マイページ、プレイヤーサイトなど
189
+ ◎◎◎-->
190
+
191
+ <div id="menu">
192
+
193
+ <!-- ログインボタン -->
194
+ <div id="btLogin">
195
+ <a href="https://secure.finalfantasyxiv.com/rc/login" class="button"></a>
196
+ </div>
197
+ <div id="mainmenu">
198
+ <!-- プレイヤーズページトップへ -->
199
+ <div class="menu-lv1">
200
+ <a class="menu-btLv1" id="btMenuGotoPlayersTop" href="/pl/index.html"></a>
201
+ </div>
202
+
203
+ <!-- メインメニュー生成開始 -->
204
+ <div class="menu-lv1">
205
+ <a class="menu-btLv1" id="btMenuInformation" href="/pl/news/information" target=""></a>
206
+ </div>
207
+ <!-- menu-lv1 -->
208
+ <div class="menu-lv1">
209
+ <a class="menu-btLv1-hasChild" id="btMenuGameStart" href="javascript:;"></a>
210
+ <!-- menu-lv1-body -->
211
+ <div class="menu-lv1-body">
212
+ <!-- menu-lv2 -->
213
+ <div class="menu-lv2">
214
+ <!-- menu-slide -->
215
+ <div class="menu-slide">
216
+ <a class="menu-btLv2" href="/pl/envi/envi01.html">
217
+ <div class="menu-btLv2-header"></div>
218
+ <div class="menu-btLv2-body">
219
+ <div class="menu-btLv2-inner">Required Specifications</div>
220
+ </div>
221
+ <div class="menu-btLv2-footer"></div>
222
+ </a>
223
+ </div><!-- menu-slide -->
224
+ <!-- menu-slide -->
225
+ <div class="menu-slide">
226
+ <a class="menu-btLv2" href="/pl/envi/envi02.html">
227
+ <div class="menu-btLv2-header"></div>
228
+ <div class="menu-btLv2-body">
229
+ <div class="menu-btLv2-inner">Installation</div>
230
+ </div>
231
+ <div class="menu-btLv2-footer"></div>
232
+ </a>
233
+ </div><!-- menu-slide -->
234
+ <!-- menu-slide -->
235
+ <div class="menu-slide">
236
+ <a class="menu-btLv2" href="/pl/envi/envi03.html">
237
+ <div class="menu-btLv2-header"></div>
238
+ <div class="menu-btLv2-body">
239
+ <div class="menu-btLv2-inner">Getting Ready</div>
240
+ </div>
241
+ <div class="menu-btLv2-footer"></div>
242
+ </a>
243
+ </div><!-- menu-slide -->
244
+ <!-- menu-slide -->
245
+ <div class="menu-slide">
246
+ <a class="menu-btLv2" href="/pl/envi/envi04.html">
247
+ <div class="menu-btLv2-header"></div>
248
+ <div class="menu-btLv2-body">
249
+ <div class="menu-btLv2-inner">Fees & Options</div>
250
+ </div>
251
+ <div class="menu-btLv2-footer"></div>
252
+ </a>
253
+ </div><!-- menu-slide -->
254
+ <!-- menu-slide -->
255
+ <div class="menu-slide">
256
+ <a class="menu-btLv2" href="/pl/envi/envi05.html">
257
+ <div class="menu-btLv2-header"></div>
258
+ <div class="menu-btLv2-body">
259
+ <div class="menu-btLv2-inner">Settings</div>
260
+ </div>
261
+ <div class="menu-btLv2-footer"></div>
262
+ </a>
263
+ </div><!-- menu-slide -->
264
+ </div><!-- menu-lv2 -->
265
+ </div><!-- menu-lv1-body -->
266
+ <div class="menu-lv1-footer"></div>
267
+ </div><!-- menu-lv1 -->
268
+ <!-- menu-lv1 -->
269
+ <div class="menu-lv1">
270
+ <a class="menu-btLv1-hasChild" id="btMenuPlayGuide" href="javascript:;"></a>
271
+ <!-- menu-lv1-body -->
272
+ <div class="menu-lv1-body">
273
+ <!-- menu-lv2 -->
274
+ <div class="menu-lv2">
275
+ <!-- menu-slide -->
276
+ <div class="menu-slide">
277
+ <a class="menu-btLv2-hasChild" href="javascript:;">
278
+ <div class="menu-btLv2-header"></div>
279
+ <div class="menu-btLv2-body">
280
+ <div class="menu-btLv2-inner">Basic Controls</div>
281
+ </div>
282
+ <div class="menu-btLv2-footer"></div>
283
+ </a>
284
+ <!-- menu-lvx -->
285
+ <div class="menu-lvx">
286
+ <div class="menu-lvx-header"></div>
287
+ <div class="menu-lvx-body">
288
+ <!-- menu-slide -->
289
+ <div class="menu-slide">
290
+ <a class="menu-btLvx" href="/pl/guide/basis01.html">
291
+ <div class="menu-btLvx-header"></div>
292
+ <div class="menu-btLvx-body">
293
+ <div class="menu-btLvx-inner">Controlling Your Character</div>
294
+ </div>
295
+ <div class="menu-btLvx-footer"></div>
296
+ </a>
297
+ </div><!-- menu-slide -->
298
+ <!-- menu-slide -->
299
+ <div class="menu-slide">
300
+ <a class="menu-btLvx" href="/pl/guide/basis02.html">
301
+ <div class="menu-btLvx-header"></div>
302
+ <div class="menu-btLvx-body">
303
+ <div class="menu-btLvx-inner">Launching & Closing the Game</div>
304
+ </div>
305
+ <div class="menu-btLvx-footer"></div>
306
+ </a>
307
+ </div><!-- menu-slide -->
308
+ </div>
309
+ <div class="menu-lvx-footer"></div>
310
+ </div><!-- menu-lvx -->
311
+ </div><!-- menu-slide -->
312
+ <!-- menu-slide -->
313
+ <div class="menu-slide">
314
+ <a class="menu-btLv2-hasChild" href="javascript:;">
315
+ <div class="menu-btLv2-header"></div>
316
+ <div class="menu-btLv2-body">
317
+ <div class="menu-btLv2-inner">Beginning the Game</div>
318
+ </div>
319
+ <div class="menu-btLv2-footer"></div>
320
+ </a>
321
+ <!-- menu-lvx -->
322
+ <div class="menu-lvx">
323
+ <div class="menu-lvx-header"></div>
324
+ <div class="menu-lvx-body">
325
+ <!-- menu-slide -->
326
+ <div class="menu-slide">
327
+ <a class="menu-btLvx" href="/pl/guide/start01.html">
328
+ <div class="menu-btLvx-header"></div>
329
+ <div class="menu-btLvx-body">
330
+ <div class="menu-btLvx-inner">Character Creation & World Selection</div>
331
+ </div>
332
+ <div class="menu-btLvx-footer"></div>
333
+ </a>
334
+ </div><!-- menu-slide -->
335
+ <!-- menu-slide -->
336
+ <div class="menu-slide">
337
+ <a class="menu-btLvx" href="/pl/guide/start02.html">
338
+ <div class="menu-btLvx-header"></div>
339
+ <div class="menu-btLvx-body">
340
+ <div class="menu-btLvx-inner">Getting Started</div>
341
+ </div>
342
+ <div class="menu-btLvx-footer"></div>
343
+ </a>
344
+ </div><!-- menu-slide -->
345
+ </div>
346
+ <div class="menu-lvx-footer"></div>
347
+ </div><!-- menu-lvx -->
348
+ </div><!-- menu-slide -->
349
+ <!-- menu-slide -->
350
+ <div class="menu-slide">
351
+ <a class="menu-btLv2" href="/pl/guide/gamescreen01.html">
352
+ <div class="menu-btLv2-header"></div>
353
+ <div class="menu-btLv2-body">
354
+ <div class="menu-btLv2-inner">The Game Screen</div>
355
+ </div>
356
+ <div class="menu-btLv2-footer"></div>
357
+ </a>
358
+ </div><!-- menu-slide -->
359
+ <!-- menu-slide -->
360
+ <div class="menu-slide">
361
+ <a class="menu-btLv2" href="/pl/guide/guildleave01.html">
362
+ <div class="menu-btLv2-header"></div>
363
+ <div class="menu-btLv2-body">
364
+ <div class="menu-btLv2-inner">Guildleves</div>
365
+ </div>
366
+ <div class="menu-btLv2-footer"></div>
367
+ </a>
368
+ </div><!-- menu-slide -->
369
+ <!-- menu-slide -->
370
+ <div class="menu-slide">
371
+ <a class="menu-btLv2" href="/pl/guide/battle01.html">
372
+ <div class="menu-btLv2-header"></div>
373
+ <div class="menu-btLv2-body">
374
+ <div class="menu-btLv2-inner">Battle & Being KO'd</div>
375
+ </div>
376
+ <div class="menu-btLv2-footer"></div>
377
+ </a>
378
+ </div><!-- menu-slide -->
379
+ <!-- menu-slide -->
380
+ <div class="menu-slide">
381
+ <a class="menu-btLv2-hasChild" href="javascript:;">
382
+ <div class="menu-btLv2-header"></div>
383
+ <div class="menu-btLv2-body">
384
+ <div class="menu-btLv2-inner">Playing With Others</div>
385
+ </div>
386
+ <div class="menu-btLv2-footer"></div>
387
+ </a>
388
+ <!-- menu-lvx -->
389
+ <div class="menu-lvx">
390
+ <div class="menu-lvx-header"></div>
391
+ <div class="menu-lvx-body">
392
+ <!-- menu-slide -->
393
+ <div class="menu-slide">
394
+ <a class="menu-btLvx" href="/pl/guide/comm01.html">
395
+ <div class="menu-btLvx-header"></div>
396
+ <div class="menu-btLvx-body">
397
+ <div class="menu-btLvx-inner">Means of Communication</div>
398
+ </div>
399
+ <div class="menu-btLvx-footer"></div>
400
+ </a>
401
+ </div><!-- menu-slide -->
402
+ <!-- menu-slide -->
403
+ <div class="menu-slide">
404
+ <a class="menu-btLvx" href="/pl/guide/comm02.html">
405
+ <div class="menu-btLvx-header"></div>
406
+ <div class="menu-btLvx-body">
407
+ <div class="menu-btLvx-inner">Parties</div>
408
+ </div>
409
+ <div class="menu-btLvx-footer"></div>
410
+ </a>
411
+ </div><!-- menu-slide -->
412
+ </div>
413
+ <div class="menu-lvx-footer"></div>
414
+ </div><!-- menu-lvx -->
415
+ </div><!-- menu-slide -->
416
+ <!-- menu-slide -->
417
+ <div class="menu-slide">
418
+ <a class="menu-btLv2-hasChild" href="javascript:;">
419
+ <div class="menu-btLv2-header"></div>
420
+ <div class="menu-btLv2-body">
421
+ <div class="menu-btLv2-inner">Synthesis</div>
422
+ </div>
423
+ <div class="menu-btLv2-footer"></div>
424
+ </a>
425
+ <!-- menu-lvx -->
426
+ <div class="menu-lvx">
427
+ <div class="menu-lvx-header"></div>
428
+ <div class="menu-lvx-body">
429
+ <!-- menu-slide -->
430
+ <div class="menu-slide">
431
+ <a class="menu-btLvx-hasChild" href="javascript:;">
432
+ <div class="menu-btLvx-header"></div>
433
+ <div class="menu-btLvx-body">
434
+ <div class="menu-btLvx-inner">Leatherworking</div>
435
+ </div>
436
+ <div class="menu-btLvx-footer"></div>
437
+ </a>
438
+ <!-- menu-lvx -->
439
+ <div class="menu-lvx">
440
+ <div class="menu-lvx-header"></div>
441
+ <div class="menu-lvx-body">
442
+ <!-- menu-slide -->
443
+ <div class="menu-slide">
444
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=E&rankId=1">
445
+ <div class="menu-btLvx-header"></div>
446
+ <div class="menu-btLvx-body">
447
+ <div class="menu-btLvx-inner">Leatherworking Recipes<br>(Lv. 1-10)</div>
448
+ </div>
449
+ <div class="menu-btLvx-footer"></div>
450
+ </a>
451
+ </div><!-- menu-slide -->
452
+ <!-- menu-slide -->
453
+ <div class="menu-slide">
454
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=E&rankId=2">
455
+ <div class="menu-btLvx-header"></div>
456
+ <div class="menu-btLvx-body">
457
+ <div class="menu-btLvx-inner">Leatherworking Recipes<br>(Lv. 11-20)</div>
458
+ </div>
459
+ <div class="menu-btLvx-footer"></div>
460
+ </a>
461
+ </div><!-- menu-slide -->
462
+ <!-- menu-slide -->
463
+ <div class="menu-slide">
464
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=E&rankId=3">
465
+ <div class="menu-btLvx-header"></div>
466
+ <div class="menu-btLvx-body">
467
+ <div class="menu-btLvx-inner">Leatherworking Recipes<br>(Lv. 21-30)</div>
468
+ </div>
469
+ <div class="menu-btLvx-footer"></div>
470
+ </a>
471
+ </div><!-- menu-slide -->
472
+ </div>
473
+ <div class="menu-lvx-footer"></div>
474
+ </div><!-- menu-lvx -->
475
+ </div><!-- menu-slide -->
476
+ <!-- menu-slide -->
477
+ <div class="menu-slide">
478
+ <a class="menu-btLvx-hasChild" href="javascript:;">
479
+ <div class="menu-btLvx-header"></div>
480
+ <div class="menu-btLvx-body">
481
+ <div class="menu-btLvx-inner">Armoring</div>
482
+ </div>
483
+ <div class="menu-btLvx-footer"></div>
484
+ </a>
485
+ <!-- menu-lvx -->
486
+ <div class="menu-lvx">
487
+ <div class="menu-lvx-header"></div>
488
+ <div class="menu-lvx-body">
489
+ <!-- menu-slide -->
490
+ <div class="menu-slide">
491
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=C&rankId=1">
492
+ <div class="menu-btLvx-header"></div>
493
+ <div class="menu-btLvx-body">
494
+ <div class="menu-btLvx-inner">Armorcraft Recipes<br>(Lv. 1-10)</div>
495
+ </div>
496
+ <div class="menu-btLvx-footer"></div>
497
+ </a>
498
+ </div><!-- menu-slide -->
499
+ <!-- menu-slide -->
500
+ <div class="menu-slide">
501
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=C&rankId=2">
502
+ <div class="menu-btLvx-header"></div>
503
+ <div class="menu-btLvx-body">
504
+ <div class="menu-btLvx-inner">Armorcraft Recipes<br>(Lv. 11-20)</div>
505
+ </div>
506
+ <div class="menu-btLvx-footer"></div>
507
+ </a>
508
+ </div><!-- menu-slide -->
509
+ <!-- menu-slide -->
510
+ <div class="menu-slide">
511
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=C&rankId=3">
512
+ <div class="menu-btLvx-header"></div>
513
+ <div class="menu-btLvx-body">
514
+ <div class="menu-btLvx-inner">Armorcraft Recipes<br>(Lv. 21-30)</div>
515
+ </div>
516
+ <div class="menu-btLvx-footer"></div>
517
+ </a>
518
+ </div><!-- menu-slide -->
519
+ </div>
520
+ <div class="menu-lvx-footer"></div>
521
+ </div><!-- menu-lvx -->
522
+ </div><!-- menu-slide -->
523
+ <!-- menu-slide -->
524
+ <div class="menu-slide">
525
+ <a class="menu-btLvx-hasChild" href="javascript:;">
526
+ <div class="menu-btLvx-header"></div>
527
+ <div class="menu-btLvx-body">
528
+ <div class="menu-btLvx-inner">Clothcraft</div>
529
+ </div>
530
+ <div class="menu-btLvx-footer"></div>
531
+ </a>
532
+ <!-- menu-lvx -->
533
+ <div class="menu-lvx">
534
+ <div class="menu-lvx-header"></div>
535
+ <div class="menu-lvx-body">
536
+ <!-- menu-slide -->
537
+ <div class="menu-slide">
538
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=F&rankId=1">
539
+ <div class="menu-btLvx-header"></div>
540
+ <div class="menu-btLvx-body">
541
+ <div class="menu-btLvx-inner">Clothcraft Recipes (Lv. 1-10)</div>
542
+ </div>
543
+ <div class="menu-btLvx-footer"></div>
544
+ </a>
545
+ </div><!-- menu-slide -->
546
+ <!-- menu-slide -->
547
+ <div class="menu-slide">
548
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=F&rankId=2">
549
+ <div class="menu-btLvx-header"></div>
550
+ <div class="menu-btLvx-body">
551
+ <div class="menu-btLvx-inner">Clothcraft Recipes (Lv. 11-20)</div>
552
+ </div>
553
+ <div class="menu-btLvx-footer"></div>
554
+ </a>
555
+ </div><!-- menu-slide -->
556
+ <!-- menu-slide -->
557
+ <div class="menu-slide">
558
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=F&rankId=3">
559
+ <div class="menu-btLvx-header"></div>
560
+ <div class="menu-btLvx-body">
561
+ <div class="menu-btLvx-inner">Clothcraft Recipes (Lv. 21-30)</div>
562
+ </div>
563
+ <div class="menu-btLvx-footer"></div>
564
+ </a>
565
+ </div><!-- menu-slide -->
566
+ </div>
567
+ <div class="menu-lvx-footer"></div>
568
+ </div><!-- menu-lvx -->
569
+ </div><!-- menu-slide -->
570
+ <!-- menu-slide -->
571
+ <div class="menu-slide">
572
+ <a class="menu-btLvx-hasChild" href="javascript:;">
573
+ <div class="menu-btLvx-header"></div>
574
+ <div class="menu-btLvx-body">
575
+ <div class="menu-btLvx-inner">Blacksmithing</div>
576
+ </div>
577
+ <div class="menu-btLvx-footer"></div>
578
+ </a>
579
+ <!-- menu-lvx -->
580
+ <div class="menu-lvx">
581
+ <div class="menu-lvx-header"></div>
582
+ <div class="menu-lvx-body">
583
+ <!-- menu-slide -->
584
+ <div class="menu-slide">
585
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=B&rankId=1">
586
+ <div class="menu-btLvx-header"></div>
587
+ <div class="menu-btLvx-body">
588
+ <div class="menu-btLvx-inner">Smithing Recipes (Lv. 1-10)</div>
589
+ </div>
590
+ <div class="menu-btLvx-footer"></div>
591
+ </a>
592
+ </div><!-- menu-slide -->
593
+ <!-- menu-slide -->
594
+ <div class="menu-slide">
595
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=B&rankId=2">
596
+ <div class="menu-btLvx-header"></div>
597
+ <div class="menu-btLvx-body">
598
+ <div class="menu-btLvx-inner">Smithing Recipes (Lv. 11-20)</div>
599
+ </div>
600
+ <div class="menu-btLvx-footer"></div>
601
+ </a>
602
+ </div><!-- menu-slide -->
603
+ <!-- menu-slide -->
604
+ <div class="menu-slide">
605
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=B&rankId=3">
606
+ <div class="menu-btLvx-header"></div>
607
+ <div class="menu-btLvx-body">
608
+ <div class="menu-btLvx-inner">Smithing Recipes (Lv. 21-30)</div>
609
+ </div>
610
+ <div class="menu-btLvx-footer"></div>
611
+ </a>
612
+ </div><!-- menu-slide -->
613
+ </div>
614
+ <div class="menu-lvx-footer"></div>
615
+ </div><!-- menu-lvx -->
616
+ </div><!-- menu-slide -->
617
+ <!-- menu-slide -->
618
+ <div class="menu-slide">
619
+ <a class="menu-btLvx-hasChild" href="javascript:;">
620
+ <div class="menu-btLvx-header"></div>
621
+ <div class="menu-btLvx-body">
622
+ <div class="menu-btLvx-inner">Goldsmithing</div>
623
+ </div>
624
+ <div class="menu-btLvx-footer"></div>
625
+ </a>
626
+ <!-- menu-lvx -->
627
+ <div class="menu-lvx">
628
+ <div class="menu-lvx-header"></div>
629
+ <div class="menu-lvx-body">
630
+ <!-- menu-slide -->
631
+ <div class="menu-slide">
632
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=D&rankId=1">
633
+ <div class="menu-btLvx-header"></div>
634
+ <div class="menu-btLvx-body">
635
+ <div class="menu-btLvx-inner">Goldsmithing Recipes<br>(Lv. 1-10)</div>
636
+ </div>
637
+ <div class="menu-btLvx-footer"></div>
638
+ </a>
639
+ </div><!-- menu-slide -->
640
+ <!-- menu-slide -->
641
+ <div class="menu-slide">
642
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=D&rankId=2">
643
+ <div class="menu-btLvx-header"></div>
644
+ <div class="menu-btLvx-body">
645
+ <div class="menu-btLvx-inner">Goldsmithing Recipes<br>(Lv. 11-20)</div>
646
+ </div>
647
+ <div class="menu-btLvx-footer"></div>
648
+ </a>
649
+ </div><!-- menu-slide -->
650
+ <!-- menu-slide -->
651
+ <div class="menu-slide">
652
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=D&rankId=3">
653
+ <div class="menu-btLvx-header"></div>
654
+ <div class="menu-btLvx-body">
655
+ <div class="menu-btLvx-inner">Goldsmithing Recipes<br>(Lv. 21-30)</div>
656
+ </div>
657
+ <div class="menu-btLvx-footer"></div>
658
+ </a>
659
+ </div><!-- menu-slide -->
660
+ </div>
661
+ <div class="menu-lvx-footer"></div>
662
+ </div><!-- menu-lvx -->
663
+ </div><!-- menu-slide -->
664
+ <!-- menu-slide -->
665
+ <div class="menu-slide">
666
+ <a class="menu-btLvx-hasChild" href="javascript:;">
667
+ <div class="menu-btLvx-header"></div>
668
+ <div class="menu-btLvx-body">
669
+ <div class="menu-btLvx-inner">Woodworking</div>
670
+ </div>
671
+ <div class="menu-btLvx-footer"></div>
672
+ </a>
673
+ <!-- menu-lvx -->
674
+ <div class="menu-lvx">
675
+ <div class="menu-lvx-header"></div>
676
+ <div class="menu-lvx-body">
677
+ <!-- menu-slide -->
678
+ <div class="menu-slide">
679
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=A&rankId=1">
680
+ <div class="menu-btLvx-header"></div>
681
+ <div class="menu-btLvx-body">
682
+ <div class="menu-btLvx-inner">Woodworking Recipes<br>(Lv. 1-10)</div>
683
+ </div>
684
+ <div class="menu-btLvx-footer"></div>
685
+ </a>
686
+ </div><!-- menu-slide -->
687
+ <!-- menu-slide -->
688
+ <div class="menu-slide">
689
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=A&rankId=2">
690
+ <div class="menu-btLvx-header"></div>
691
+ <div class="menu-btLvx-body">
692
+ <div class="menu-btLvx-inner">Woodworking Recipes<br>(Lv. 11-20)</div>
693
+ </div>
694
+ <div class="menu-btLvx-footer"></div>
695
+ </a>
696
+ </div><!-- menu-slide -->
697
+ <!-- menu-slide -->
698
+ <div class="menu-slide">
699
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=A&rankId=3">
700
+ <div class="menu-btLvx-header"></div>
701
+ <div class="menu-btLvx-body">
702
+ <div class="menu-btLvx-inner">Woodworking Recipes<br>(Lv. 21-30)</div>
703
+ </div>
704
+ <div class="menu-btLvx-footer"></div>
705
+ </a>
706
+ </div><!-- menu-slide -->
707
+ </div>
708
+ <div class="menu-lvx-footer"></div>
709
+ </div><!-- menu-lvx -->
710
+ </div><!-- menu-slide -->
711
+ <!-- menu-slide -->
712
+ <div class="menu-slide">
713
+ <a class="menu-btLvx-hasChild" href="javascript:;">
714
+ <div class="menu-btLvx-header"></div>
715
+ <div class="menu-btLvx-body">
716
+ <div class="menu-btLvx-inner">Cooking</div>
717
+ </div>
718
+ <div class="menu-btLvx-footer"></div>
719
+ </a>
720
+ <!-- menu-lvx -->
721
+ <div class="menu-lvx">
722
+ <div class="menu-lvx-header"></div>
723
+ <div class="menu-lvx-body">
724
+ <!-- menu-slide -->
725
+ <div class="menu-slide">
726
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=H&rankId=1">
727
+ <div class="menu-btLvx-header"></div>
728
+ <div class="menu-btLvx-body">
729
+ <div class="menu-btLvx-inner">Cooking Recipes (Lv. 1-10)</div>
730
+ </div>
731
+ <div class="menu-btLvx-footer"></div>
732
+ </a>
733
+ </div><!-- menu-slide -->
734
+ <!-- menu-slide -->
735
+ <div class="menu-slide">
736
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=H&rankId=2">
737
+ <div class="menu-btLvx-header"></div>
738
+ <div class="menu-btLvx-body">
739
+ <div class="menu-btLvx-inner">Cooking Recipes (Lv. 11-20)</div>
740
+ </div>
741
+ <div class="menu-btLvx-footer"></div>
742
+ </a>
743
+ </div><!-- menu-slide -->
744
+ <!-- menu-slide -->
745
+ <div class="menu-slide">
746
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=H&rankId=3">
747
+ <div class="menu-btLvx-header"></div>
748
+ <div class="menu-btLvx-body">
749
+ <div class="menu-btLvx-inner">Cooking Recipes (Lv. 21-30)</div>
750
+ </div>
751
+ <div class="menu-btLvx-footer"></div>
752
+ </a>
753
+ </div><!-- menu-slide -->
754
+ </div>
755
+ <div class="menu-lvx-footer"></div>
756
+ </div><!-- menu-lvx -->
757
+ </div><!-- menu-slide -->
758
+ <!-- menu-slide -->
759
+ <div class="menu-slide">
760
+ <a class="menu-btLvx-hasChild" href="javascript:;">
761
+ <div class="menu-btLvx-header"></div>
762
+ <div class="menu-btLvx-body">
763
+ <div class="menu-btLvx-inner">Alchemy</div>
764
+ </div>
765
+ <div class="menu-btLvx-footer"></div>
766
+ </a>
767
+ <!-- menu-lvx -->
768
+ <div class="menu-lvx">
769
+ <div class="menu-lvx-header"></div>
770
+ <div class="menu-lvx-body">
771
+ <!-- menu-slide -->
772
+ <div class="menu-slide">
773
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=G&rankId=1">
774
+ <div class="menu-btLvx-header"></div>
775
+ <div class="menu-btLvx-body">
776
+ <div class="menu-btLvx-inner">Alchemy Recipes (Lv. 1-10)</div>
777
+ </div>
778
+ <div class="menu-btLvx-footer"></div>
779
+ </a>
780
+ </div><!-- menu-slide -->
781
+ <!-- menu-slide -->
782
+ <div class="menu-slide">
783
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=G&rankId=2">
784
+ <div class="menu-btLvx-header"></div>
785
+ <div class="menu-btLvx-body">
786
+ <div class="menu-btLvx-inner">Alchemy Recipes (Lv. 11-20)</div>
787
+ </div>
788
+ <div class="menu-btLvx-footer"></div>
789
+ </a>
790
+ </div><!-- menu-slide -->
791
+ <!-- menu-slide -->
792
+ <div class="menu-slide">
793
+ <a class="menu-btLvx" href="/pl/guide/recipe.html?classId=G&rankId=3">
794
+ <div class="menu-btLvx-header"></div>
795
+ <div class="menu-btLvx-body">
796
+ <div class="menu-btLvx-inner">Alchemy Recipes (Lv. 21-30)</div>
797
+ </div>
798
+ <div class="menu-btLvx-footer"></div>
799
+ </a>
800
+ </div><!-- menu-slide -->
801
+ </div>
802
+ <div class="menu-lvx-footer"></div>
803
+ </div><!-- menu-lvx -->
804
+ </div><!-- menu-slide -->
805
+ </div>
806
+ <div class="menu-lvx-footer"></div>
807
+ </div><!-- menu-lvx -->
808
+ </div><!-- menu-slide -->
809
+ <!-- menu-slide -->
810
+ <div class="menu-slide">
811
+ <a class="menu-btLv2" href="/pl/guide/macro01.html">
812
+ <div class="menu-btLv2-header"></div>
813
+ <div class="menu-btLv2-body">
814
+ <div class="menu-btLv2-inner">Text Commands & Macros</div>
815
+ </div>
816
+ <div class="menu-btLv2-footer"></div>
817
+ </a>
818
+ </div><!-- menu-slide -->
819
+ </div><!-- menu-lv2 -->
820
+ </div><!-- menu-lv1-body -->
821
+ <div class="menu-lv1-footer"></div>
822
+ </div><!-- menu-lv1 -->
823
+ <!-- menu-lv1 -->
824
+ <div class="menu-lv1">
825
+ <a class="menu-btLv1-hasChild" id="btMenuDownload" href="javascript:;"></a>
826
+ <!-- menu-lv1-body -->
827
+ <div class="menu-lv1-body">
828
+ <!-- menu-lv2 -->
829
+ <div class="menu-lv2">
830
+ <!-- menu-slide -->
831
+ <div class="menu-slide">
832
+ <a class="menu-btLv2" href="/pl/download/benchmark01.html">
833
+ <div class="menu-btLv2-header"></div>
834
+ <div class="menu-btLv2-body">
835
+ <div class="menu-btLv2-inner">Official Benchmark</div>
836
+ </div>
837
+ <div class="menu-btLv2-footer"></div>
838
+ </a>
839
+ </div><!-- menu-slide -->
840
+ <!-- menu-slide -->
841
+ <div class="menu-slide">
842
+ <a class="menu-btLv2" href="/pl/download/fansite01.html">
843
+ <div class="menu-btLv2-header"></div>
844
+ <div class="menu-btLv2-body">
845
+ <div class="menu-btLv2-inner">Fan Site Kit</div>
846
+ </div>
847
+ <div class="menu-btLv2-footer"></div>
848
+ </a>
849
+ </div><!-- menu-slide -->
850
+ </div><!-- menu-lv2 -->
851
+ </div><!-- menu-lv1-body -->
852
+ <div class="menu-lv1-footer"></div>
853
+ </div><!-- menu-lv1 -->
854
+ <div class="menu-lv1">
855
+ <a class="menu-btLv1" id="btMenuSupportEN" href="http://support.na.square-enix.com/main.php?id=902&la=1" target="_blank"></a>
856
+ </div>
857
+ <div class="menu-lv1">
858
+ <a class="menu-btLv1" id="btMenuRuleEN" href="http://support.jp.square-enix.com/rule.php?id=902&la=1" target="_blank"></a>
859
+ </div>
860
+ <div class="menu-lv1">
861
+ <a class="menu-btLv1" id="btMenuSqexAccountEN" href="https://secure.square-enix.com/account/app/svc/login?cont=account" target="_blank"></a>
862
+ </div>
863
+ </div>
864
+
865
+ <div class="floatEnd"></div>
866
+
867
+ </div><!-- menu -->
868
+
869
+ <!-- ======================================================================= -->
870
+ <!-- //サイドメニュー -->
871
+ <!-- ======================================================================= -->
872
+
873
+ <!-- ======================================================================= -->
874
+ <!-- コンテナ -->
875
+ <!-- ======================================================================= -->
876
+ <!-- container -->
877
+ <div id="container">
878
+
879
+ <!-- ======================================================================= -->
880
+ <!-- マイページメニュー &ログインキャラクター -->
881
+ <!-- ======================================================================= -->
882
+ <!-- ======================================================================= -->
883
+ <!-- ログインキャラクター -->
884
+ <!-- ======================================================================= -->
885
+ <!-- ======================================================================= -->
886
+ <!-- 非ログイン時にログインをうながすメッセージを表示する -->
887
+ <!-- ======================================================================= -->
888
+ <div id="unlessloginmenu-message"></div>
889
+ <!-- ======================================================================= -->
890
+ <!-- キャラクターページメニュー -->
891
+ <!-- ======================================================================= -->
892
+ <!-- キャラクターページキャラネーム -->
893
+ <div id="charpage-charname">
894
+ <div id="charpage-charname-header"></div>
895
+ <div id="charpage-charname-body">
896
+ <!-- キャラ名 -->
897
+ <div id="charpage-charname-name">
898
+ <a href="/rc/character/top?cicuid=1015990">
899
+ Lady Simmons (Selbina)</a>
900
+ </div><!-- キャラ名 -->
901
+
902
+ </div>
903
+ <div id="charpage-charname-footer"></div>
904
+ </div><!-- キャラクターページキャラネーム -->
905
+
906
+ <!-- キャラクターページメニュー -->
907
+ <div id="charpagemenu">
908
+ <div id="charpagemenu-header"></div>
909
+
910
+ <div id="charpagemenu-body">
911
+ <a id="btCMCharacter" class="btCM button floatLeft" href="/rc/character/status?cicuid=1015990"></a>
912
+ <a id="btCMDiary" class="btCM button floatLeft" href="/rc/diary/top?cicuid=1015990"></a>
913
+ <div id="lbCMFollow" class="btCM button floatLeft"></div>
914
+ <div class="floatEnd"></div>
915
+ </div>
916
+
917
+ <!-- ページガイド -->
918
+ <div class="contents-guide"><div></div></div>
919
+
920
+ <div id="charpagemenu-footer"></div>
921
+ </div><!-- charpagemenu -->
922
+
923
+ <!-- ======================================================================= -->
924
+ <!-- //マイページメニュー -->
925
+ <!-- ======================================================================= -->
926
+ <span class="hide" id="followLimitErrorText">You cannot follow more than 500 characters.</span>
927
+ <span class="hide" id="followErrorText">An unexpected error has occurred.</span>
928
+
929
+ <!-- ======================================================================= -->
930
+ <!-- //キャラクターページメニュー -->
931
+ <!-- ======================================================================= -->
932
+
933
+ <!-- ======================================================================= -->
934
+ <!-- トピックパス -->
935
+ <!-- ======================================================================= -->
936
+
937
+ <div id="topicpath">
938
+ <div id="topicpath-header">
939
+ <div id="topicpath-guide"></div>
940
+ </div>
941
+ <div id="topicpath-body">
942
+ <div id="topicpath-patharea">
943
+ <!-- 開始タグ:現在のページ -->
944
+ <!-- 開始タグ:以前のページ -->
945
+ <div class="topicpath-past">
946
+ <a href="/rc/character/top?cicuid=1015990" class="" style="">Lady Simmons (Selbina)</a><!-- 終了タグ -->
947
+ </div>
948
+ <!-- 開始タグ:現在のページ -->
949
+ <div class="topicpath-current">
950
+ <!-- 開始タグ:以前のページ -->
951
+ Character Profile<!-- 終了タグ -->
952
+ </div>
953
+ <div class="floatEnd"></div>
954
+ </div>
955
+ </div>
956
+ <div id="topicpath-footer"></div>
957
+ </div><!-- topicpath --><!-- topicPath -->
958
+
959
+
960
+ <!-- ======================================================================= -->
961
+ <!-- //トピックパス -->
962
+ <!-- ======================================================================= -->
963
+
964
+ <!-- contents -->
965
+ <div id="contents">
966
+ <!-- 手書き編集エリア===================================================== -->
967
+
968
+ <!-- #contents-body -->
969
+ <div id="contents-body">
970
+
971
+ <!-- #two-column-L -->
972
+ <div id="two-column-L">
973
+
974
+ <!--=--------------------------------------------------------
975
+ Aゾーン
976
+ ---------------------------------------------------------=-->
977
+ <!-- #azone -->
978
+ <div id="azone">
979
+
980
+ <!-- #azone-contents -->
981
+ <div id="azone-contents">
982
+
983
+ <!-- 見出し -->
984
+ <!-- .contents-headline -->
985
+ <div class="contents-headline">
986
+ <!-- .contents-headlineInner -->
987
+ <div class="contents-headlineInner">
988
+ <div class="contents-headlineHeader">
989
+ <div class="contents-headlineTL"></div>
990
+ <div class="contents-headlineTR"></div>
991
+ </div>
992
+ <div class="contents-headlineBody">
993
+ <div>Character Profile</div>
994
+ </div>
995
+ <div class="contents-headlineFooter">
996
+ <div class="contents-headlineBL"></div>
997
+ <div class="contents-headlineBR"></div>
998
+ </div>
999
+ </div><!-- .contents-headlineInner -->
1000
+ </div><!-- .contents-headline -->
1001
+
1002
+ <!-- .contents-frame -->
1003
+ <div class="contents-frame">
1004
+ <!-- .contents-frame-lv1 -->
1005
+ <div class="contents-frame-lv1">
1006
+ <!-- .contents-frame-lv2 -->
1007
+ <div class="contents-frame-lv2">
1008
+
1009
+ <!-- .contents-frame-inner -->
1010
+ <div class="contents-frame-inner">
1011
+
1012
+
1013
+ <!-- プロフィール台紙 -->
1014
+ <div class="profile-plate" id="profile-plate2">
1015
+ <div id="charname">
1016
+ <div>Lady Simmons (Selbina)</div>
1017
+ </div>
1018
+ <div id="profile">
1019
+ <!-- キャラ画像 -->
1020
+ <div class="image-mount floatLeft">
1021
+ <div class="image-mount-image"><img src="http://static.finalfantasyxiv.com/csnap/v05m_m_7bd793d507a92d2c415b306a83280d19.png?gediwpzz" class=""/></div>
1022
+ <div class="image-mount-frame"></div>
1023
+ </div><!-- キャラ画像 -->
1024
+
1025
+ <!-- 情報表組み -->
1026
+ <table id="profile-table" class="floatLeft" cellpadding="0" cellspacing="0">
1027
+ <!-- 部族&民族 -->
1028
+ <tr>
1029
+ <td colspan="3">
1030
+ Seeker of the Sun Female&nbsp;/&nbsp;Miqo&#39;te</td>
1031
+ </tr>
1032
+ <!-- メインスキル -->
1033
+ <tr>
1034
+ <!-- スキルアイコン -->
1035
+ <td width="40"><div class="skill" id="skill34"></div></td>
1036
+ <td colspan="2">
1037
+ Weaver&nbsp;
1038
+ </td>
1039
+ </tr>
1040
+ <!-- 誕生日 -->
1041
+ <tr>
1042
+ <!-- 守護神アイコン -->
1043
+ <td rowspan="2"><div class="guard" id="guard4"></div></td>
1044
+ <th width="120">Nameday:</th>
1045
+ <td>
1046
+ 4th Sun of the 3rd Umbral Moon</td>
1047
+ </tr>
1048
+ <!-- 守護神 -->
1049
+ <tr>
1050
+ <th>Guardian:</th>
1051
+ <td>Nymeia, the Spinner</td>
1052
+ </tr>
1053
+ <!-- 開始都市 -->
1054
+ <tr>
1055
+ <td>&nbsp;</td>
1056
+ <th>Starting City</th>
1057
+ <td>Gridania</td>
1058
+ </tr>
1059
+
1060
+ <tr>
1061
+ <td>&nbsp;</td>
1062
+ <th>Physical Level</th>
1063
+ <td>12</td>
1064
+ </tr>
1065
+ <tr>
1066
+ <td>&nbsp;</td>
1067
+ <th>Experience Points</th>
1068
+ <td>
1069
+ 18880&nbsp;/&nbsp;28000</td>
1070
+ </tr>
1071
+ <tr>
1072
+ <td>&nbsp;</td>
1073
+ <th>HP</th>
1074
+ <td>
1075
+ 526&nbsp;(528)
1076
+ </td>
1077
+ </tr>
1078
+ <tr>
1079
+ <td>&nbsp;</td>
1080
+ <th>MP</th>
1081
+ <td>391&nbsp;(391)</td>
1082
+ </tr>
1083
+ <tr>
1084
+ <td>&nbsp;</td>
1085
+ <th>TP</th>
1086
+ <td>3000&nbsp;(3000)</td>
1087
+ </tr>
1088
+
1089
+ </table><!-- 情報表組み -->
1090
+ <div class="floatEnd"></div>
1091
+ </div>
1092
+ </div><!-- プロフィール台紙 -->
1093
+
1094
+ <!-- 自己紹介 -->
1095
+ <!-- 自己紹介 -->
1096
+
1097
+ <div style="margin-top:8px ">
1098
+ <div class="floatLeft" style="width:268px">
1099
+
1100
+ <div class="contents-subheader">
1101
+ <div>Attributes</div>
1102
+ </div>
1103
+
1104
+ <table class="contents-table1" style="width:266px;margin-left:1px" cellspacing="1">
1105
+ <!-- STR -->
1106
+ <tr>
1107
+ <th class="contents-table1TH1" width="50%">Strength</th>
1108
+ <td class="contents-table1TD1" width="50%">16&nbsp;(16)</td>
1109
+ </tr><!-- STR -->
1110
+
1111
+ <!-- VIT -->
1112
+ <tr>
1113
+ <th class="contents-table1TH2">Vitality</th>
1114
+ <td class="contents-table1TD2">24&nbsp;(24)</td>
1115
+ </tr><!-- VIT -->
1116
+
1117
+ <!-- DEX -->
1118
+ <tr>
1119
+ <th class="contents-table1TH1">Dexterity</th>
1120
+ <td class="contents-table1TD1">17&nbsp;(17)</td>
1121
+ </tr><!-- DEX -->
1122
+
1123
+ <!-- INT -->
1124
+ <tr>
1125
+ <th class="contents-table1TH2">Intelligence</th>
1126
+ <td class="contents-table1TD2">36&nbsp;(36)</td>
1127
+ </tr>
1128
+ <!-- INT -->
1129
+
1130
+ <!-- MND -->
1131
+ <tr>
1132
+ <th class="contents-table1TH1">Mind</th>
1133
+ <td class="contents-table1TD1">37&nbsp;(37)</td>
1134
+ </tr><!-- MND -->
1135
+
1136
+ <!-- PIE -->
1137
+ <tr>
1138
+ <th class="contents-table1TH2">Piety</th>
1139
+ <td class="contents-table1TD2">28&nbsp;(28)</td>
1140
+ </tr><!-- PIE -->
1141
+ </table>
1142
+ </div>
1143
+
1144
+ <div class="floatRight" style="width:268px">
1145
+
1146
+ <div class="contents-subheader">
1147
+ <div>Elements</div>
1148
+ </div>
1149
+
1150
+ <table class="contents-table1" style="width:266px;margin-left:1px" cellspacing="1">
1151
+
1152
+ <tr>
1153
+ <th class="contents-table1TH1" width="50%">
1154
+ <div class="param-label" style="background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/param/fire.png);width:15px">
1155
+ Fire</div>
1156
+ </th>
1157
+ <td class="contents-table1TD1" width="50%">
1158
+ 28&nbsp;(28)
1159
+ </td>
1160
+ </tr>
1161
+
1162
+ <tr>
1163
+ <th class="contents-table1TH2">
1164
+ <div class="param-label" style="background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/param/water.png);width:15px">
1165
+ Water</div>
1166
+ </th>
1167
+ <td class="contents-table1TD2">
1168
+ 29&nbsp;(29)
1169
+ </td>
1170
+ </tr>
1171
+
1172
+ <tr>
1173
+ <th class="contents-table1TH1">
1174
+ <div class="param-label" style="background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/param/thunder.png);width:15px">
1175
+ Lightning</div>
1176
+ </th>
1177
+ <td class="contents-table1TD1">
1178
+ 30&nbsp;(30)
1179
+ </td>
1180
+ </tr>
1181
+
1182
+ <tr>
1183
+ <th class="contents-table1TH2">
1184
+ <div class="param-label" style="background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/param/wind.png);width:15px">
1185
+ Wind</div>
1186
+ </th>
1187
+ <td class="contents-table1TD2">
1188
+ 30&nbsp;(30)
1189
+ </td>
1190
+ </tr>
1191
+
1192
+ <tr>
1193
+ <th class="contents-table1TH2">
1194
+ <div class="param-label" style="background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/param/earth.png);width:15px">
1195
+ Earth</div>
1196
+ </th>
1197
+ <td class="contents-table1TD2">
1198
+ 25&nbsp;(25)
1199
+ </td>
1200
+ </tr>
1201
+
1202
+ <tr>
1203
+ <th class="contents-table1TH1">
1204
+ <div class="param-label" style="background-image:url(http://static.finalfantasyxiv.com/community/images/common/default/contents/character/icon/param/ice.png);width:15px">
1205
+ Ice</div>
1206
+ </th>
1207
+ <td class="contents-table1TD1">
1208
+ 15&nbsp;(15)
1209
+ </td>
1210
+ </tr>
1211
+
1212
+
1213
+
1214
+ </table>
1215
+ </div>
1216
+
1217
+ <div class="floatEnd"></div>
1218
+
1219
+ </div>
1220
+
1221
+
1222
+ <div class="contents-subheader" style="margin-top:8px">
1223
+ <div>Skills</div>
1224
+ </div>
1225
+ <table class="contents-table1" cellspacing="1">
1226
+ <tr>
1227
+ <th class="mainskill-label contents-table1TH1" id="pgl" width="33%">
1228
+ <div style="margin-left:38px">Hand-to-Hand</div>
1229
+ </th>
1230
+
1231
+ <td class="contents-table1TD1" width="33%">
1232
+ <table>
1233
+ <tr>
1234
+ <td>Rank</td>
1235
+ <td width="8"></td>
1236
+ <td>-</td>
1237
+ </tr>
1238
+ </table>
1239
+ </td>
1240
+ <td width="33%" class="contents-table1TD2">
1241
+ <table>
1242
+ <tr>
1243
+ <td>Skill Points</td>
1244
+ <td width="8"></td>
1245
+ <td>-</td>
1246
+ </tr>
1247
+ </table>
1248
+ </td>
1249
+ </tr>
1250
+ <tr>
1251
+ <th class="mainskill-label contents-table1TH2" id="gla" width="33%">
1252
+ <div style="margin-left:38px">Sword</div>
1253
+ </th>
1254
+
1255
+ <td class="contents-table1TD3" width="33%">
1256
+ <table>
1257
+ <tr>
1258
+ <td>Rank</td>
1259
+ <td width="8"></td>
1260
+ <td>-</td>
1261
+ </tr>
1262
+ </table>
1263
+ </td>
1264
+ <td width="33%" class="contents-table1TD4">
1265
+ <table>
1266
+ <tr>
1267
+ <td>Skill Points</td>
1268
+ <td width="8"></td>
1269
+ <td>-</td>
1270
+ </tr>
1271
+ </table>
1272
+ </td>
1273
+ </tr>
1274
+ <tr>
1275
+ <th class="mainskill-label contents-table1TH1" id="mrd" width="33%">
1276
+ <div style="margin-left:38px">Axe</div>
1277
+ </th>
1278
+
1279
+ <td class="contents-table1TD1" width="33%">
1280
+ <table>
1281
+ <tr>
1282
+ <td>Rank</td>
1283
+ <td width="8"></td>
1284
+ <td>-</td>
1285
+ </tr>
1286
+ </table>
1287
+ </td>
1288
+ <td width="33%" class="contents-table1TD2">
1289
+ <table>
1290
+ <tr>
1291
+ <td>Skill Points</td>
1292
+ <td width="8"></td>
1293
+ <td>-</td>
1294
+ </tr>
1295
+ </table>
1296
+ </td>
1297
+ </tr>
1298
+ <tr>
1299
+ <th class="mainskill-label contents-table1TH2" id="arc" width="33%">
1300
+ <div style="margin-left:38px">Archery</div>
1301
+ </th>
1302
+
1303
+ <td class="contents-table1TD3" width="33%">
1304
+ <table>
1305
+ <tr>
1306
+ <td>Rank</td>
1307
+ <td width="8"></td>
1308
+ <td>-</td>
1309
+ </tr>
1310
+ </table>
1311
+ </td>
1312
+ <td width="33%" class="contents-table1TD4">
1313
+ <table>
1314
+ <tr>
1315
+ <td>Skill Points</td>
1316
+ <td width="8"></td>
1317
+ <td>-</td>
1318
+ </tr>
1319
+ </table>
1320
+ </td>
1321
+ </tr>
1322
+ <tr>
1323
+ <th class="mainskill-label contents-table1TH1" id="lnc" width="33%">
1324
+ <div style="margin-left:38px">Polearm</div>
1325
+ </th>
1326
+
1327
+ <td class="contents-table1TD1" width="33%">
1328
+ <table>
1329
+ <tr>
1330
+ <td>Rank</td>
1331
+ <td width="8"></td>
1332
+ <td>-</td>
1333
+ </tr>
1334
+ </table>
1335
+ </td>
1336
+ <td width="33%" class="contents-table1TD2">
1337
+ <table>
1338
+ <tr>
1339
+ <td>Skill Points</td>
1340
+ <td width="8"></td>
1341
+ <td>-</td>
1342
+ </tr>
1343
+ </table>
1344
+ </td>
1345
+ </tr>
1346
+ <tr>
1347
+ <th class="mainskill-label contents-table1TH2" id="snt" width="33%">
1348
+ <div style="margin-left:38px">Shield</div>
1349
+ </th>
1350
+
1351
+ <td class="contents-table1TD3" width="33%">
1352
+ <table>
1353
+ <tr>
1354
+ <td>Rank</td>
1355
+ <td width="8"></td>
1356
+ <td>-</td>
1357
+ </tr>
1358
+ </table>
1359
+ </td>
1360
+ <td width="33%" class="contents-table1TD4">
1361
+ <table>
1362
+ <tr>
1363
+ <td>Skill Points</td>
1364
+ <td width="8"></td>
1365
+ <td>-</td>
1366
+ </tr>
1367
+ </table>
1368
+ </td>
1369
+ </tr>
1370
+ <tr>
1371
+ <th class="mainskill-label contents-table1TH1" id="thm" width="33%">
1372
+ <div style="margin-left:38px">Thaumaturgy</div>
1373
+ </th>
1374
+
1375
+ <td class="contents-table1TD1" width="33%">
1376
+ <table>
1377
+ <tr>
1378
+ <td>Rank</td>
1379
+ <td width="8"></td>
1380
+ <td>-</td>
1381
+ </tr>
1382
+ </table>
1383
+ </td>
1384
+ <td width="33%" class="contents-table1TD2">
1385
+ <table>
1386
+ <tr>
1387
+ <td>Skill Points</td>
1388
+ <td width="8"></td>
1389
+ <td>-</td>
1390
+ </tr>
1391
+ </table>
1392
+ </td>
1393
+ </tr>
1394
+ <tr>
1395
+ <th class="mainskill-label contents-table1TH2" id="con" width="33%">
1396
+ <div style="margin-left:38px">Conjury</div>
1397
+ </th>
1398
+
1399
+ <td class="contents-table1TD3" width="33%">
1400
+ <table>
1401
+ <tr>
1402
+ <td>Rank</td>
1403
+ <td width="8"></td>
1404
+ <td>1</td>
1405
+ </tr>
1406
+ </table>
1407
+ </td>
1408
+ <td width="33%" class="contents-table1TD4">
1409
+ <table>
1410
+ <tr>
1411
+ <td>Skill Points</td>
1412
+ <td width="8"></td>
1413
+ <td>272&nbsp;/&nbsp;570</td>
1414
+ </tr>
1415
+ </table>
1416
+ </td>
1417
+ </tr>
1418
+ <tr>
1419
+ <th class="mainskill-label contents-table1TH1" id="crp" width="33%">
1420
+ <div style="margin-left:38px">Woodworking</div>
1421
+ </th>
1422
+
1423
+ <td class="contents-table1TD1" width="33%">
1424
+ <table>
1425
+ <tr>
1426
+ <td>Rank</td>
1427
+ <td width="8"></td>
1428
+ <td>5</td>
1429
+ </tr>
1430
+ </table>
1431
+ </td>
1432
+ <td width="33%" class="contents-table1TD2">
1433
+ <table>
1434
+ <tr>
1435
+ <td>Skill Points</td>
1436
+ <td width="8"></td>
1437
+ <td>305&nbsp;/&nbsp;1500</td>
1438
+ </tr>
1439
+ </table>
1440
+ </td>
1441
+ </tr>
1442
+ <tr>
1443
+ <th class="mainskill-label contents-table1TH2" id="bsm" width="33%">
1444
+ <div style="margin-left:38px">Smithing</div>
1445
+ </th>
1446
+
1447
+ <td class="contents-table1TD3" width="33%">
1448
+ <table>
1449
+ <tr>
1450
+ <td>Rank</td>
1451
+ <td width="8"></td>
1452
+ <td>-</td>
1453
+ </tr>
1454
+ </table>
1455
+ </td>
1456
+ <td width="33%" class="contents-table1TD4">
1457
+ <table>
1458
+ <tr>
1459
+ <td>Skill Points</td>
1460
+ <td width="8"></td>
1461
+ <td>-</td>
1462
+ </tr>
1463
+ </table>
1464
+ </td>
1465
+ </tr>
1466
+ <tr>
1467
+ <th class="mainskill-label contents-table1TH1" id="arm" width="33%">
1468
+ <div style="margin-left:38px">Armorcraft</div>
1469
+ </th>
1470
+
1471
+ <td class="contents-table1TD1" width="33%">
1472
+ <table>
1473
+ <tr>
1474
+ <td>Rank</td>
1475
+ <td width="8"></td>
1476
+ <td>-</td>
1477
+ </tr>
1478
+ </table>
1479
+ </td>
1480
+ <td width="33%" class="contents-table1TD2">
1481
+ <table>
1482
+ <tr>
1483
+ <td>Skill Points</td>
1484
+ <td width="8"></td>
1485
+ <td>-</td>
1486
+ </tr>
1487
+ </table>
1488
+ </td>
1489
+ </tr>
1490
+ <tr>
1491
+ <th class="mainskill-label contents-table1TH2" id="gld" width="33%">
1492
+ <div style="margin-left:38px">Goldsmithing</div>
1493
+ </th>
1494
+
1495
+ <td class="contents-table1TD3" width="33%">
1496
+ <table>
1497
+ <tr>
1498
+ <td>Rank</td>
1499
+ <td width="8"></td>
1500
+ <td>-</td>
1501
+ </tr>
1502
+ </table>
1503
+ </td>
1504
+ <td width="33%" class="contents-table1TD4">
1505
+ <table>
1506
+ <tr>
1507
+ <td>Skill Points</td>
1508
+ <td width="8"></td>
1509
+ <td>-</td>
1510
+ </tr>
1511
+ </table>
1512
+ </td>
1513
+ </tr>
1514
+ <tr>
1515
+ <th class="mainskill-label contents-table1TH1" id="tan" width="33%">
1516
+ <div style="margin-left:38px">Leatherworking</div>
1517
+ </th>
1518
+
1519
+ <td class="contents-table1TD1" width="33%">
1520
+ <table>
1521
+ <tr>
1522
+ <td>Rank</td>
1523
+ <td width="8"></td>
1524
+ <td>1</td>
1525
+ </tr>
1526
+ </table>
1527
+ </td>
1528
+ <td width="33%" class="contents-table1TD2">
1529
+ <table>
1530
+ <tr>
1531
+ <td>Skill Points</td>
1532
+ <td width="8"></td>
1533
+ <td>78&nbsp;/&nbsp;570</td>
1534
+ </tr>
1535
+ </table>
1536
+ </td>
1537
+ </tr>
1538
+ <tr>
1539
+ <th class="mainskill-label contents-table1TH2" id="wvr" width="33%">
1540
+ <div style="margin-left:38px">Clothcraft</div>
1541
+ </th>
1542
+
1543
+ <td class="contents-table1TD3" width="33%">
1544
+ <table>
1545
+ <tr>
1546
+ <td>Rank</td>
1547
+ <td width="8"></td>
1548
+ <td>6</td>
1549
+ </tr>
1550
+ </table>
1551
+ </td>
1552
+ <td width="33%" class="contents-table1TD4">
1553
+ <table>
1554
+ <tr>
1555
+ <td>Skill Points</td>
1556
+ <td width="8"></td>
1557
+ <td>1145&nbsp;/&nbsp;1800</td>
1558
+ </tr>
1559
+ </table>
1560
+ </td>
1561
+ </tr>
1562
+ <tr>
1563
+ <th class="mainskill-label contents-table1TH1" id="alc" width="33%">
1564
+ <div style="margin-left:38px">Alchemy</div>
1565
+ </th>
1566
+
1567
+ <td class="contents-table1TD1" width="33%">
1568
+ <table>
1569
+ <tr>
1570
+ <td>Rank</td>
1571
+ <td width="8"></td>
1572
+ <td>8</td>
1573
+ </tr>
1574
+ </table>
1575
+ </td>
1576
+ <td width="33%" class="contents-table1TD2">
1577
+ <table>
1578
+ <tr>
1579
+ <td>Skill Points</td>
1580
+ <td width="8"></td>
1581
+ <td>1753&nbsp;/&nbsp;3200</td>
1582
+ </tr>
1583
+ </table>
1584
+ </td>
1585
+ </tr>
1586
+ <tr>
1587
+ <th class="mainskill-label contents-table1TH2" id="cul" width="33%">
1588
+ <div style="margin-left:38px">Cooking</div>
1589
+ </th>
1590
+
1591
+ <td class="contents-table1TD3" width="33%">
1592
+ <table>
1593
+ <tr>
1594
+ <td>Rank</td>
1595
+ <td width="8"></td>
1596
+ <td>-</td>
1597
+ </tr>
1598
+ </table>
1599
+ </td>
1600
+ <td width="33%" class="contents-table1TD4">
1601
+ <table>
1602
+ <tr>
1603
+ <td>Skill Points</td>
1604
+ <td width="8"></td>
1605
+ <td>-</td>
1606
+ </tr>
1607
+ </table>
1608
+ </td>
1609
+ </tr>
1610
+ <tr>
1611
+ <th class="mainskill-label contents-table1TH1" id="min" width="33%">
1612
+ <div style="margin-left:38px">Mining</div>
1613
+ </th>
1614
+
1615
+ <td class="contents-table1TD1" width="33%">
1616
+ <table>
1617
+ <tr>
1618
+ <td>Rank</td>
1619
+ <td width="8"></td>
1620
+ <td>1</td>
1621
+ </tr>
1622
+ </table>
1623
+ </td>
1624
+ <td width="33%" class="contents-table1TD2">
1625
+ <table>
1626
+ <tr>
1627
+ <td>Skill Points</td>
1628
+ <td width="8"></td>
1629
+ <td>431&nbsp;/&nbsp;570</td>
1630
+ </tr>
1631
+ </table>
1632
+ </td>
1633
+ </tr>
1634
+ <tr>
1635
+ <th class="mainskill-label contents-table1TH2" id="btn" width="33%">
1636
+ <div style="margin-left:38px">Botany</div>
1637
+ </th>
1638
+
1639
+ <td class="contents-table1TD3" width="33%">
1640
+ <table>
1641
+ <tr>
1642
+ <td>Rank</td>
1643
+ <td width="8"></td>
1644
+ <td>9</td>
1645
+ </tr>
1646
+ </table>
1647
+ </td>
1648
+ <td width="33%" class="contents-table1TD4">
1649
+ <table>
1650
+ <tr>
1651
+ <td>Skill Points</td>
1652
+ <td width="8"></td>
1653
+ <td>1800&nbsp;/&nbsp;4300</td>
1654
+ </tr>
1655
+ </table>
1656
+ </td>
1657
+ </tr>
1658
+ <tr>
1659
+ <th class="mainskill-label contents-table1TH1" id="fsh" width="33%">
1660
+ <div style="margin-left:38px">Fishing</div>
1661
+ </th>
1662
+
1663
+ <td class="contents-table1TD1" width="33%">
1664
+ <table>
1665
+ <tr>
1666
+ <td>Rank</td>
1667
+ <td width="8"></td>
1668
+ <td>3</td>
1669
+ </tr>
1670
+ </table>
1671
+ </td>
1672
+ <td width="33%" class="contents-table1TD2">
1673
+ <table>
1674
+ <tr>
1675
+ <td>Skill Points</td>
1676
+ <td width="8"></td>
1677
+ <td>748&nbsp;/&nbsp;880</td>
1678
+ </tr>
1679
+ </table>
1680
+ </td>
1681
+ </tr>
1682
+ </table>
1683
+
1684
+ </div><!-- .contents-frame-inner -->
1685
+
1686
+ </div><!-- .contents-frame-lv2 -->
1687
+ </div><!-- .contents-frame-lv1 -->
1688
+ </div><!-- .contents-frame -->
1689
+
1690
+ </div><!-- #azone-contents -->
1691
+ </div><!-- #azone -->
1692
+ <!--=--------------------------------------------------------
1693
+ //Aゾーン
1694
+ ---------------------------------------------------------=-->
1695
+
1696
+ <div id="outboundLinkMessage" class="hide">
1697
+ You are now exiting the Lodestone.<br/>Proceed?<br/><br/><span class="window-text-note">*Square Enix cannot be held responsible for the content of website links posted on the Lodestone or any damage incurred by accessing these links.</span></div>
1698
+
1699
+ <div class="floatEnd"></div>
1700
+
1701
+ </div><!-- #one-column or #two-column-L -->
1702
+
1703
+ </div><!-- #contents-body -->
1704
+
1705
+ <!-- //手書き編集エリア=================================================== -->
1706
+
1707
+ </div><!-- contents -->
1708
+
1709
+ </div><!-- container -->
1710
+
1711
+ <!-- ======================================================================= -->
1712
+ <!-- //コンテンツ -->
1713
+ <!-- ======================================================================= -->
1714
+
1715
+ <!-- フロート終了 -->
1716
+ <div class="floatEnd"></div>
1717
+
1718
+ </div><!-- #wrap-body -->
1719
+
1720
+ <!-- #wrap-footer -->
1721
+ <div id="wrap-footer">
1722
+ <div align="left" id="wrap-footer-bg">
1723
+ <a class="button" id="btShowTimeZoneWindow" href="javascript:;"></a>
1724
+ <div id="copyright"><div>&#xA9; 2010 SQUARE ENIX CO., LTD. All Rights Reserved.<br/>FINAL FANTASY, FFXIV, SQUARE ENIX and the SQUARE ENIX logo are registered trademarks or trademarks of Square Enix Holdings Co., Ltd. &quot;PlayStation&quot; and the &quot;PS&quot;<br/>Family logo are registered trademarks and &quot;PS3&quot; is a trademark of Sony Computer Entertainment Inc. The PlayStation Network Logo is a service mark of Sony Computer Entertainment Inc. The ESRB rating icon is a registered trademark of the Entertainment Software Association. All other trademarks are the properties of their respective owners.</div>
1725
+ <table class="floatRight" cellpadding="0" cellspacing="0">
1726
+ <tr>
1727
+ <td><img src="http://static.finalfantasyxiv.com/global/images/common/default/wrap/footer/copyright/esrbrate.gif?_v=4mk"/></td>
1728
+ <td width="30"></td>
1729
+ <td><img src="http://static.finalfantasyxiv.com/global/images/common/default/wrap/footer/copyright/ps.gif?_v=4mk"/></td>
1730
+ <td width="30"></td>
1731
+ <td><img src="http://static.finalfantasyxiv.com/global/images/common/default/wrap/footer/copyright/ps3.gif?_v=4mk"/></td>
1732
+ <td width="30"></td>
1733
+ <td><img src="http://static.finalfantasyxiv.com/global/images/common/default/wrap/footer/copyright/psn.gif?_v=4mk"/></td>
1734
+ <td width="30"></td>
1735
+ <td><img src="http://static.finalfantasyxiv.com/global/images/common/default/wrap/footer/copyright/pcdvd.gif?_v=4mk"/></td>
1736
+ <td width="30"></td>
1737
+ <td><a href="http://www.square-enix.com/na/privacy/" target="_blank"><img src="http://static.finalfantasyxiv.com/global/images/common/default/wrap/footer/copyright/esrb.gif?_v=4mk"/></a></td>
1738
+ </tr>
1739
+ </table>
1740
+ </div>
1741
+ <div class="floatEnd"></div>
1742
+ </div>
1743
+ </div><!-- #wrap-footer -->
1744
+ </div><!-- #wrap -->
1745
+ </div><!-- #bg2 -->
1746
+ </div><!-- #bg --></body>
1747
+ </html>
1748
+ <script type="text/javascript" src="http://static.finalfantasyxiv.com/global/js/mini/common/init.js?_v=4mk"></script><script type="text/javascript" src="http://static.finalfantasyxiv.com/community/js/mini/character/characterStatus.js?_v=4mk"></script><script type="text/javascript">
1749
+
1750
+ var _gaq = _gaq || [];
1751
+ _gaq.push(['_setAccount', 'UA-18627772-1']);
1752
+ _gaq.push(['_setDomainName', '.finalfantasyxiv.com']);
1753
+ _gaq.push(['_trackPageview']);
1754
+
1755
+ (function() {
1756
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
1757
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
1758
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
1759
+ })();
1760
+
1761
+ </script>