[Balance] Remove Species Locks from Aura Wheel and Poison Puppeteer (#4330)
* Remove non-form-change species locks * Fix typo in localization * Mark descriptions that need changes * Update ability.json * Update move.json * Update ability.json * Update src/locales/pt_BR/ability.json * Update src/locales/pt_BR/move.json * KO translations Co-authored-by: Enoch <enoch.jwsong@gmail.com> * Update src/locales/de/ability.json * Update src/locales/de/move.json * Update src/locales/de/move.json * Update ability.json * Update move.json * Update src/locales/it/move.json * Update src/locales/it/ability.json * Update src/locales/ja/move.json Co-authored-by: Chapybara-jp <charlie.beer@hotmail.com> * Update src/locales/ja/ability.json Co-authored-by: Chapybara-jp <charlie.beer@hotmail.com> * Update src/locales/es/ability.json Co-authored-by: DanStevensonx <114961842+DanStevensonx@users.noreply.github.com> * Update move.json * Update src/locales/zh_CN/ability.json Co-authored-by: btsrkex <34084904+btsrkex@users.noreply.github.com> * Apply suggestions from code review Co-authored-by: btsrkex <34084904+btsrkex@users.noreply.github.com> --------- Co-authored-by: Lugiad <adrien.grivel@hotmail.fr> Co-authored-by: José Ricardo <josefleury@discente.ufg.br> Co-authored-by: Enoch <enoch.jwsong@gmail.com> Co-authored-by: Jannik Tappert <38758606+CodeTappert@users.noreply.github.com> Co-authored-by: Niccolò <123510358+NicusPulcis@users.noreply.github.com> Co-authored-by: Chapybara-jp <charlie.beer@hotmail.com> Co-authored-by: DanStevensonx <114961842+DanStevensonx@users.noreply.github.com> Co-authored-by: btsrkex <34084904+btsrkex@users.noreply.github.com>
This commit is contained in:
parent
2028848845
commit
3ef02c9bbd
|
@ -5879,6 +5879,6 @@ export function initAbilities() {
|
||||||
new Ability(Abilities.POISON_PUPPETEER, 9)
|
new Ability(Abilities.POISON_PUPPETEER, 9)
|
||||||
.attr(UncopiableAbilityAbAttr)
|
.attr(UncopiableAbilityAbAttr)
|
||||||
.attr(UnswappableAbilityAbAttr)
|
.attr(UnswappableAbilityAbAttr)
|
||||||
.conditionalAttr(pokemon => pokemon.species.speciesId===Species.PECHARUNT, ConfusionOnStatusEffectAbAttr, StatusEffect.POISON, StatusEffect.TOXIC)
|
.attr(ConfusionOnStatusEffectAbAttr, StatusEffect.POISON, StatusEffect.TOXIC)
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
|
@ -9073,8 +9073,7 @@ export function initMoves() {
|
||||||
new AttackMove(Moves.AURA_WHEEL, Type.ELECTRIC, MoveCategory.PHYSICAL, 110, 100, 10, 100, 0, 8)
|
new AttackMove(Moves.AURA_WHEEL, Type.ELECTRIC, MoveCategory.PHYSICAL, 110, 100, 10, 100, 0, 8)
|
||||||
.attr(StatStageChangeAttr, [ Stat.SPD ], 1, true)
|
.attr(StatStageChangeAttr, [ Stat.SPD ], 1, true)
|
||||||
.makesContact(false)
|
.makesContact(false)
|
||||||
.attr(AuraWheelTypeAttr)
|
.attr(AuraWheelTypeAttr),
|
||||||
.condition((user, target, move) => [user.species.speciesId, user.fusionSpecies?.speciesId].includes(Species.MORPEKO)), // Missing custom fail message
|
|
||||||
new AttackMove(Moves.BREAKING_SWIPE, Type.DRAGON, MoveCategory.PHYSICAL, 60, 100, 15, 100, 0, 8)
|
new AttackMove(Moves.BREAKING_SWIPE, Type.DRAGON, MoveCategory.PHYSICAL, 60, 100, 15, 100, 0, 8)
|
||||||
.target(MoveTarget.ALL_NEAR_ENEMIES)
|
.target(MoveTarget.ALL_NEAR_ENEMIES)
|
||||||
.attr(StatStageChangeAttr, [ Stat.ATK ], -1),
|
.attr(StatStageChangeAttr, [ Stat.ATK ], -1),
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "Giftpuppenspiel",
|
"name": "Giftpuppenspiel",
|
||||||
"description": "Wenn Infamomo ein Ziel mit einer Attacke vergiftet, so wird dieses auch verwirrt."
|
"description": "Wenn das Pokémon ein Ziel mit einer Attacke vergiftet, so wird dieses auch verwirrt."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "Aura-Rad",
|
"name": "Aura-Rad",
|
||||||
"effect": "Mithilfe der in den Backentaschen gespeicherten Energie greift der Anwender an und erhöht seine Initiative. Der Typ der Attacke hängt von Morpekos Form ab."
|
"effect": "Mithilfe der in den Backentaschen gespeicherten Energie greift der Anwender an und erhöht seine Initiative. Wenn dies von Morpeko verwendet wird hängt der Typ der Attacke von dessen Form ab."
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "Breitseite",
|
"name": "Breitseite",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "Poison Puppeteer",
|
"name": "Poison Puppeteer",
|
||||||
"description": "Pokémon poisoned by Pecharunt's moves will also become confused."
|
"description": "Pokémon poisoned by this Pokémon's moves will also become confused."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "Aura Wheel",
|
"name": "Aura Wheel",
|
||||||
"effect": "Morpeko attacks and raises its Speed with the energy stored in its cheeks. This move's type changes depending on the user's form."
|
"effect": "The user attacks and raises its Speed with the energy stored in its cheeks. If used by Morpeko, this move's type changes depending on the user's form."
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "Breaking Swipe",
|
"name": "Breaking Swipe",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "Títere Tóxico",
|
"name": "Títere Tóxico",
|
||||||
"description": "Los rivales que Pecharunt envenene con sus movimientos también sufrirán confusión."
|
"description": "Los rivales que el usuario envenene con sus movimientos también sufrirán confusión."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "Rueda Aural",
|
"name": "Rueda Aural",
|
||||||
"effect": "La energía que acumula en las mejillas le sirve para atacar y aumentar su Velocidad. Este movimiento cambia de tipo según la forma que adopte Morpeko."
|
"effect": "La energía que acumula en las mejillas le sirve para atacar y aumentar su Velocidad. Si es utilizado por Morpeko, este movimiento cambia de tipo según la forma que adopte."
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "Vasto Impacto",
|
"name": "Vasto Impacto",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "Emprise Toxique",
|
"name": "Emprise Toxique",
|
||||||
"description": "Lorsque Pêchaminus empoisonne un Pokémon grâce à l’une de ses capacités, ce dernier devient également confus."
|
"description": "Lorsque le Pokémon en empoisonne un autre grâce à l’une de ses capacités, ce dernier devient également confus."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "Roue Libre",
|
"name": "Roue Libre",
|
||||||
"effect": "Inflige et change en type Ténèbres"
|
"effect": "Le Pokémon libère l’énergie stockée dans ses joues pour attaquer et augmenter sa Vitesse. Le type de cette capacité change en fonction de la forme du lanceur."
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "Abattage",
|
"name": "Abattage",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "\tMalia Tossica",
|
"name": "\tMalia Tossica",
|
||||||
"description": "I Pokémon avvelenati dalle mosse di Pecharunt entreranno anche in stato di confusione."
|
"description": "I Pokémon avvelenati dalle mosse di questo Pokémon entreranno anche in stato di confusione."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "Ruota d'Aura",
|
"name": "Ruota d'Aura",
|
||||||
"effect": "Il Pokémon emette l'energia accumulata nelle guance per attaccare e aumentare la Velocità. Il tipo della mossa cambia in base alla forma assunta da Morpeko."
|
"effect": "Il Pokémon emette l'energia accumulata nelle guance per attaccare e aumentare la Velocità. Se usata da Morpeko, il tipo della mossa cambia in base alla forma assunta."
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "Vastoimpatto",
|
"name": "Vastoimpatto",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "どくくぐつ",
|
"name": "どくくぐつ",
|
||||||
"description": "モモワロウの 技によって どく状態に なった 相手は こんらん状態にも なってしまう。"
|
"description": "このポケモンの 技によって どく状態に なった 相手は こんらん状態にも なってしまう。"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "オーラぐるま",
|
"name": "オーラぐるま",
|
||||||
"effect": "ほほぶくろに 溜めた エネルギーで 攻撃し 自分の 素早さを あげる。 モルペコの 姿で タイプが 変わる。"
|
"effect": "ほほぶくろに 溜めた エネルギーで 攻撃し 自分の 素早さを あげる。 モルペコが この技を 使う場合 姿で 技の タイプが 変わる。"
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "ワイドブレイカー",
|
"name": "ワイドブレイカー",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "독조종",
|
"name": "독조종",
|
||||||
"description": "복숭악동의 기술에 의해 독 상태가 된 상대는 혼란 상태도 되어 버린다."
|
"description": "이 기술에 의해 독 상태가 된 상대는 혼란 상태도 되어 버린다."
|
||||||
}
|
}
|
||||||
}
|
}
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "오라휠",
|
"name": "오라휠",
|
||||||
"effect": "볼주머니에 저장해둔 에너지로 공격하고 자신의 스피드를 올린다. 모르페코의 모습에 따라 타입이 바뀐다."
|
"effect": "볼주머니에 저장해둔 에너지로 공격하고 자신의 스피드를 올린다. 모르페코가 사용할 경우 모습에 따라 타입이 바뀐다."
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "와이드브레이커",
|
"name": "와이드브레이커",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "Poison Puppeteer",
|
"name": "Poison Puppeteer",
|
||||||
"description": "Pokémon envenenados pelos movimentos de Pecharunt também ficarão confusos."
|
"description": "Pokémon envenenados pelos movimentos deste Pokémon também ficarão confusos."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "Aura Wheel",
|
"name": "Aura Wheel",
|
||||||
"effect": "Morpeko ataca e aumenta sua Velocidade com a energia armazenada em suas bochechas. O tipo deste movimento muda dependendo da forma do usuário."
|
"effect": "O usuário ataca e aumenta sua Velocidade com a energia armazenada em suas bochechas. Se usado por Morpeko, o tipo deste movimento muda dependendo da forma do usuário."
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "Breaking Swipe",
|
"name": "Breaking Swipe",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "毒傀儡",
|
"name": "毒傀儡",
|
||||||
"description": "因桃歹郎的招式而陷入中毒状态的\n对手同时也会陷入混乱状态。"
|
"description": "因此宝可梦的招式而陷入中毒状态的对手\n同时也会陷入混乱状态。"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "气场轮",
|
"name": "气场轮",
|
||||||
"effect": "用储存在颊囊里的能量进行攻击,\n并提高自己的速度。其属性会随着\n莫鲁贝可的样子而改变"
|
"effect": "用储存在颊囊里的能量进行攻击,\n并提高自己的速度。如果由莫鲁贝可使用,\n其属性会随着它的样子而改变"
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "广域破坏",
|
"name": "广域破坏",
|
||||||
|
|
|
@ -1237,6 +1237,6 @@
|
||||||
},
|
},
|
||||||
"poisonPuppeteer": {
|
"poisonPuppeteer": {
|
||||||
"name": "毒傀儡",
|
"name": "毒傀儡",
|
||||||
"description": "因為桃歹郎的招式而陷入中\n毒狀態的對手同時也會陷入\n混亂狀態。"
|
"description": "因為此寶可夢的招式而陷入中毒狀態的對手\n同時也會陷入混亂狀態。"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -3129,7 +3129,7 @@
|
||||||
},
|
},
|
||||||
"auraWheel": {
|
"auraWheel": {
|
||||||
"name": "氣場輪",
|
"name": "氣場輪",
|
||||||
"effect": "用儲存在頰囊裏的能量進行\n攻擊,並提高自己的速度。\n其屬性會隨着莫魯貝可的樣\n子而改變"
|
"effect": "用儲存在頰囊裏的能量進行\n攻擊,並提高自己的速度。\n如果由莫魯貝可使用,\n其屬性會隨着它的樣子而改變"
|
||||||
},
|
},
|
||||||
"breakingSwipe": {
|
"breakingSwipe": {
|
||||||
"name": "廣域破壞",
|
"name": "廣域破壞",
|
||||||
|
|
Loading…
Reference in New Issue