You are on page 1of 1

UPDATE effects_templates et, langs l SET et.Description = l.

Spanish WHERE
et.DescriptionId = l.id;
UPDATE spells_states ss, langs l SET ss.`Name` = l.Spanish WHERE ss.NameId = l.id;
UPDATE spells_templates st, langs l SET st.`Name` = l.Spanish WHERE st.NameId =
l.id;
UPDATE spells_templates st, langs l SET st.Description = l.Spanish WHERE
st.DescriptionId = l.id;
UPDATE items_types it, langs l SET it.`Name` = l.Spanish WHERE it.NameId = l.id;
UPDATE items_templates it, langs l SET it.Description = l.Spanish WHERE
it.DescriptionId = l.id;
UPDATE items_templates it, langs l SET it.`Name` = l.Spanish WHERE it.NameId =
l.id;
UPDATE items_templates it, items_types ity SET it.`Type` = ity.Name WHERE it.TypeId
= ity.id;
UPDATE items_templates_weapons it, langs l SET it.Description = l.Spanish WHERE
it.DescriptionId = l.id;
UPDATE items_templates_weapons it, langs l SET it.`Name` = l.Spanish WHERE
it.NameId = l.id;
UPDATE items_templates_weapons it, items_types ity SET it.`Type` = ity.Name WHERE
it.TypeId = ity.id;
UPDATE spells_types st, langs l SET st.`ShortName` = l.Spanish WHERE st.ShortNameId
= l.id;
UPDATE spells_types st, langs l SET st.`LongName` = l.Spanish WHERE st.LongNameId =
l.id;
UPDATE spells_templates st, spells_types sty SET st.`Type` = sty.`LongName` WHERE
st.TypeId = sty.Id;
UPDATE monsters_superraces ms, langs l SET ms.`Name` = l.Spanish WHERE ms.NameId =
l.Id;
UPDATE monsters_races mr, langs l SET mr.`Name` = l.Spanish WHERE mr.NameId = l.Id;
UPDATE monsters_races mr, monsters_superraces ms SET mr.`SuperRace` = ms.`Name`
WHERE mr.SuperRaceId = ms.Id;
UPDATE monsters_templates mt, langs l SET mt.`Name` = l.Spanish WHERE mt.NameId =
l.Id;
UPDATE monsters_templates mt, monsters_races mr SET mt.`Race` = mr.`Name` WHERE
mt.RaceId = mr.Id;

UPDATE breeds_spells bs, spellconversions sc SET bs.Spell = sc.NewSpellId WHERE


bs.Spell = sc.OldSpellId;
UPDATE breeds_spells bs, spellconversions sc SET bs.VariantId = sc.NewSpellId WHERE
bs.VariantId = sc.OldSpellId;

You might also like