// ogl/size.js

// Size modifier information used by 3EProfiler that was released by WotC under
// the Open Gaming License (OGL). This file however, is not released under
// the OGL (see above).

sizeModifiers = {
  c:-8,
  g:-4,
  h:-2,
  l:-1,
  m:0,
  s:1,
  t:2,
  d:4,
  f:8
};

grappleSizeModifiers = {
  c:16,
  g:12,
  h:8,
  l:4,
  m:0,
  s:-4,
  t:-8,
  d:-12,
  f:-16
};


