|
| 1 | +-- ######################################################### |
| 2 | +-- Playerbots - Add PVP / Arena texts for TellPvpAction |
| 3 | +-- Localized for all WotLK locales (koKR, frFR, deDE, zhCN, |
| 4 | +-- zhTW, esES, esMX, ruRU) |
| 5 | +-- ######################################################### |
| 6 | + |
| 7 | +-- --------------------------------------------------------- |
| 8 | +-- pvp_currency |
| 9 | +-- [PVP] Arena points: %arena_points | Honor Points: %honor_points |
| 10 | +-- --------------------------------------------------------- |
| 11 | +INSERT INTO `ai_playerbot_texts` |
| 12 | + (`name`, `text`, `say_type`, `reply_type`, |
| 13 | + `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, |
| 14 | + `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8`) |
| 15 | +SELECT |
| 16 | + 'pvp_currency', |
| 17 | + '[PVP] Arena points: %arena_points | Honor Points: %honor_points', |
| 18 | + 0, 0, |
| 19 | + -- koKR |
| 20 | + '[PVP] 투기장 점수: %arena_points | 명예 점수: %honor_points', |
| 21 | + -- frFR |
| 22 | + '[PVP] Points d''arène : %arena_points | Points d''honneur : %honor_points', |
| 23 | + -- deDE |
| 24 | + '[PVP] Arenapunkte: %arena_points | Ehrenpunkte: %honor_points', |
| 25 | + -- zhCN |
| 26 | + '[PVP] 竞技场点数:%arena_points | 荣誉点数:%honor_points', |
| 27 | + -- zhTW |
| 28 | + '[PVP] 競技場點數:%arena_points | 榮譽點數:%honor_points', |
| 29 | + -- esES |
| 30 | + '[PVP] Puntos de arena: %arena_points | Puntos de honor: %honor_points', |
| 31 | + -- esMX |
| 32 | + '[PVP] Puntos de arena: %arena_points | Puntos de honor: %honor_points', |
| 33 | + -- ruRU |
| 34 | + '[PVP] Очки арены: %arena_points | Очки чести: %honor_points' |
| 35 | +WHERE NOT EXISTS ( |
| 36 | + SELECT 1 FROM `ai_playerbot_texts` WHERE `name` = 'pvp_currency' |
| 37 | +); |
| 38 | + |
| 39 | +-- --------------------------------------------------------- |
| 40 | +-- pvp_arena_team |
| 41 | +-- [PVP] %bracket: <%team_name> (rating %team_rating) |
| 42 | +-- --------------------------------------------------------- |
| 43 | +INSERT INTO `ai_playerbot_texts` |
| 44 | + (`name`, `text`, `say_type`, `reply_type`, |
| 45 | + `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, |
| 46 | + `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8`) |
| 47 | +SELECT |
| 48 | + 'pvp_arena_team', |
| 49 | + '[PVP] %bracket: <%team_name> (rating %team_rating)', |
| 50 | + 0, 0, |
| 51 | + -- koKR |
| 52 | + '[PVP] %bracket: <%team_name> (평점 %team_rating)', |
| 53 | + -- frFR |
| 54 | + '[PVP] %bracket : <%team_name> (cote %team_rating)', |
| 55 | + -- deDE |
| 56 | + '[PVP] %bracket: <%team_name> (Wertung %team_rating)', |
| 57 | + -- zhCN |
| 58 | + '[PVP] %bracket: <%team_name> (评分 %team_rating)', |
| 59 | + -- zhTW |
| 60 | + '[PVP] %bracket: <%team_name> (評分 %team_rating)', |
| 61 | + -- esES |
| 62 | + '[PVP] %bracket: <%team_name> (índice %team_rating)', |
| 63 | + -- esMX |
| 64 | + '[PVP] %bracket: <%team_name> (índice %team_rating)', |
| 65 | + -- ruRU |
| 66 | + '[PVP] %bracket: <%team_name> (рейтинг %team_rating)' |
| 67 | +WHERE NOT EXISTS ( |
| 68 | + SELECT 1 FROM `ai_playerbot_texts` WHERE `name` = 'pvp_arena_team' |
| 69 | +); |
| 70 | + |
| 71 | +-- --------------------------------------------------------- |
| 72 | +-- pvp_no_arena_team |
| 73 | +-- [PVP] I have no Arena Team. |
| 74 | +-- --------------------------------------------------------- |
| 75 | +INSERT INTO `ai_playerbot_texts` |
| 76 | + (`name`, `text`, `say_type`, `reply_type`, |
| 77 | + `text_loc1`, `text_loc2`, `text_loc3`, `text_loc4`, |
| 78 | + `text_loc5`, `text_loc6`, `text_loc7`, `text_loc8`) |
| 79 | +SELECT |
| 80 | + 'pvp_no_arena_team', |
| 81 | + '[PVP] I have no Arena Team.', |
| 82 | + 0, 0, |
| 83 | + -- koKR |
| 84 | + '[PVP] 투기장 팀이 없습니다.', |
| 85 | + -- frFR |
| 86 | + '[PVP] Je n''ai aucune équipe d''arène.', |
| 87 | + -- deDE |
| 88 | + '[PVP] Ich habe kein Arenateam.', |
| 89 | + -- zhCN |
| 90 | + '[PVP] 我没有竞技场战队。', |
| 91 | + -- zhTW |
| 92 | + '[PVP] 我沒有競技場隊伍。', |
| 93 | + -- esES |
| 94 | + '[PVP] No tengo equipo de arena.', |
| 95 | + -- esMX |
| 96 | + '[PVP] No tengo equipo de arena.', |
| 97 | + -- ruRU |
| 98 | + '[PVP] У меня нет команды арены.' |
| 99 | +WHERE NOT EXISTS ( |
| 100 | + SELECT 1 FROM `ai_playerbot_texts` WHERE `name` = 'pvp_no_arena_team' |
| 101 | +); |
0 commit comments