-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Incorrect traits/skills & some suggestions #18
Comments
Sounds good, thanks. I am still cleaning up the traits... just pushed out version 1.1.8 which was a MAJOR overhaul to the text. I will now focus on some of these, I will try to address most of them. |
Not sure what "buffed" means, I assume you mean, "please add?" I actually added them in the last patch.
There is also this trait: |
I am gonna push these out as a hotpatch.
I also fixed Sai Saichi's trait text... Edit: Alright, I fixed these in: #19 |
Yes, I am in the process of implementing this.
I will try my best
This would be based on the unit ID, but I do not send that over, because the original author did not organize the data by unit like I have... I want this too and have been thinking about how to implement it efficiently.
Sounds reasonable.
This is all data that I have, but am not sending it over, because the calculator does not support it at this time. I really need to sync the calculator to my database...
Sounds easy enough.
I am not sure what the formula is? Could you provide a reference to one? |
The min/max values for those traits were buffed in 1.4 but only for 3* parts & above. For example, Duo's 20% chance to not recoil is now 33%.
Sorry don't have one but it's alright if you can't add it since CPWR is not really important. |
I am gonna try writing a userscript that parses a Degeki page to spit out the stats for the parts and weapons, so I can quickly compare with what I have... it will take a bit of time... something I have been meaning to do anyways. Edit: It is done (sort of), the script can be found here: https://gist.github.com/rmkane/1990061bdcd7f8d59a39e413a7b4f050#file-ver-1-2-0-userscript-js I am gonna integrate the code into this project under a |
Alright, I updated the traits: #21 Here are the queries I ran, to find them: select `id`, `name`, `trait` from `pilot` where lower(`trait`) like '%chance to not recoil%' order by `name` asc;
select `id`, `name`, `trait` from `pilot` where lower(`trait`) like '%chance to prevent vernier consumption when stepping%' order by `name` asc;
select `id`, `name`, `trait` from `pilot` where lower(`trait`) like '%chance of attacks penetrating super armor%' order by `name` asc;
select p.id, p.name, pt.name, p.trait from `part` p, `part_type` pt where pt.id = p.part_type_id and lower(p.trait) like '%chance to not recoil%' order by p.name asc;
select p.id, p.name, pt.name, p.trait from `part` p, `part_type` pt where pt.id = p.part_type_id and lower(p.trait) like '%chance to prevent vernier consumption when stepping%' order by p.name asc;
select p.id, p.rarity, p.name, pt.name, p.trait from `part` p, `part_type` pt where pt.id = p.part_type_id and lower(p.trait) like '%chance of attacks penetrating super armor%' order by p.rarity, p.name asc; |
Hey man, i wanna ask you about the GBGW calculator. |
@Hyperaiser I do not know the original creator. I reverse-engineered the code. I took the liberty of forking it and turning it into a manageable application. |
|
I will take care of these very soon. Thanks. |
Still want to do these:
But I would probably re-write the website for the 2.0 update and incorporate these as foundational features. |
Since he did it wholeheartedly for GBGW community, but i feel it a little bit since he got suprise when he saw your calculator and asked who made it. |
@Hyperaiser Nope... It's just a hobby. |
The update of Anniversary have a ton of new things. I know i have no place
to ask this, but when we can enjoy newest GBGW Calculator?
I was never a coder, but at least i have written all sets of gunpla after
Newyear Asian until the build training system came out, and that is how
they got me. If you need a hand for some simple but boring and long
task, let me know it, i can help you.
…On Mon, Jul 13, 2020 at 6:29 PM Ryan Kane ***@***.***> wrote:
@Hyperaiser <https://github.com/Hyperaiser> Nope...
It's just a hobby.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#18 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AN5WACTODXR3TRSDTQREL7TR3LVYTANCNFSM4NIC3PSQ>
.
|
Buffed:
Incorrect:
Suggestions:
Good work with the calculator! 👍
The text was updated successfully, but these errors were encountered: