Can a Pokémon have a CP level of below 10?Pokémon GO Egg Hatching DistancesWhy can't I catch any Pokémon in Pokémon Go?Does the blue highlight indicate anything?Can you kick a Pokémon from a rivaling Gym by lowering the Gym level?How many candies do you get for every 2k, 5k, and 10k egg?Pokémon GO - Pokémon max level & cost of stardust and candy?Can the off-regional pokémon hatch from eggs?Are wild Pokémon capped at level 30?Why does the “evolve” button sometimes show only a silhouette?Can a Pokémon be both Shiny and Lucky?
Why is 'additive' EQ more difficult to use than 'subtractive'?
Is there a solution to paying high fees when opening and closing lightning channels once we hit a fee only market?
Meaning of "half-crown enclosure"
Adobe Illustrator: How can I change the profile of a dashed stroke?
Must every right-inverse of a linear transformation be a linear transformation?
Why is this integration method not valid?
How to safely discharge oneself
Why the work done is positive when bringing 2 opposite charges together?
csname in newenviroment
How do you earn the reader's trust?
Is it safe to redirect stdout and stderr to the same file without file descriptor copies?
Shell builtin `printf` line limit?
How to tease a romance without a cat and mouse chase?
Is there a word for pant sleeves?
What does it mean when みたいな is at the end of a sentence?
mmap: effect of other processes writing to a file previously mapped read-only
How to make Flex Markers appear in Logic Pro X?
Writing "hahaha" versus describing the laugh
Illustrating that universal optimality is stronger than sphere packing
What was the primary motivation for a historical figure like Xenophon to create an extensive collection of written material?
How can I reduce the size of matrix?
Ribbon Cable Cross Talk - Is there a fix after the fact?
How to test if argument is a single space?
A nasty indefinite integral
Can a Pokémon have a CP level of below 10?
Pokémon GO Egg Hatching DistancesWhy can't I catch any Pokémon in Pokémon Go?Does the blue highlight indicate anything?Can you kick a Pokémon from a rivaling Gym by lowering the Gym level?How many candies do you get for every 2k, 5k, and 10k egg?Pokémon GO - Pokémon max level & cost of stardust and candy?Can the off-regional pokémon hatch from eggs?Are wild Pokémon capped at level 30?Why does the “evolve” button sometimes show only a silhouette?Can a Pokémon be both Shiny and Lucky?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
So far, I haven't seen any Pokémon with below CP 10. Is it even possible for this to occur (it doesn't matter whether the Pokémon is hatched, found, or evolved)?
pokemon-go
add a comment |
So far, I haven't seen any Pokémon with below CP 10. Is it even possible for this to occur (it doesn't matter whether the Pokémon is hatched, found, or evolved)?
pokemon-go
add a comment |
So far, I haven't seen any Pokémon with below CP 10. Is it even possible for this to occur (it doesn't matter whether the Pokémon is hatched, found, or evolved)?
pokemon-go
So far, I haven't seen any Pokémon with below CP 10. Is it even possible for this to occur (it doesn't matter whether the Pokémon is hatched, found, or evolved)?
pokemon-go
pokemon-go
asked Jul 23 '16 at 6:35
fi12fi12
405513
405513
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
No, according to the following formula there is no way to get below 10 CP
CP = MAX(10, FLOOR(Stamina0.5 * Attack * Def0.5 / 10))
Source
Easily explained the formula calculates the current CP based on the Pokémon's stats and if it's higher than 10 it'll be the CP value or if it's below 10 it will set the CP to 10.
That's what the part CP = max(10,value)
does. The higher one wins.
Note: This is not to be confused with their motivation in gyms, where their CP will decrease over time. That effect is only temporary and not their real CP.
add a comment |
It can have less than 10. I am just seeing a 9 CP squirtle in a gym.
5
Do you have any screenshot to prove that?
– Lucas Sant'Anna
Jan 22 '18 at 15:22
3
You probably saw a 9 motivation, which is a decreased CP over the time the Pokemon was in the gym
– Wondercricket
Jan 22 '18 at 15:26
add a comment |
Your Answer
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "41"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f276749%2fcan-a-pok%25c3%25a9mon-have-a-cp-level-of-below-10%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
No, according to the following formula there is no way to get below 10 CP
CP = MAX(10, FLOOR(Stamina0.5 * Attack * Def0.5 / 10))
Source
Easily explained the formula calculates the current CP based on the Pokémon's stats and if it's higher than 10 it'll be the CP value or if it's below 10 it will set the CP to 10.
That's what the part CP = max(10,value)
does. The higher one wins.
Note: This is not to be confused with their motivation in gyms, where their CP will decrease over time. That effect is only temporary and not their real CP.
add a comment |
No, according to the following formula there is no way to get below 10 CP
CP = MAX(10, FLOOR(Stamina0.5 * Attack * Def0.5 / 10))
Source
Easily explained the formula calculates the current CP based on the Pokémon's stats and if it's higher than 10 it'll be the CP value or if it's below 10 it will set the CP to 10.
That's what the part CP = max(10,value)
does. The higher one wins.
Note: This is not to be confused with their motivation in gyms, where their CP will decrease over time. That effect is only temporary and not their real CP.
add a comment |
No, according to the following formula there is no way to get below 10 CP
CP = MAX(10, FLOOR(Stamina0.5 * Attack * Def0.5 / 10))
Source
Easily explained the formula calculates the current CP based on the Pokémon's stats and if it's higher than 10 it'll be the CP value or if it's below 10 it will set the CP to 10.
That's what the part CP = max(10,value)
does. The higher one wins.
Note: This is not to be confused with their motivation in gyms, where their CP will decrease over time. That effect is only temporary and not their real CP.
No, according to the following formula there is no way to get below 10 CP
CP = MAX(10, FLOOR(Stamina0.5 * Attack * Def0.5 / 10))
Source
Easily explained the formula calculates the current CP based on the Pokémon's stats and if it's higher than 10 it'll be the CP value or if it's below 10 it will set the CP to 10.
That's what the part CP = max(10,value)
does. The higher one wins.
Note: This is not to be confused with their motivation in gyms, where their CP will decrease over time. That effect is only temporary and not their real CP.
edited Jan 22 '18 at 15:29
answered Jul 23 '16 at 8:15
dlydly
11.4k33363
11.4k33363
add a comment |
add a comment |
It can have less than 10. I am just seeing a 9 CP squirtle in a gym.
5
Do you have any screenshot to prove that?
– Lucas Sant'Anna
Jan 22 '18 at 15:22
3
You probably saw a 9 motivation, which is a decreased CP over the time the Pokemon was in the gym
– Wondercricket
Jan 22 '18 at 15:26
add a comment |
It can have less than 10. I am just seeing a 9 CP squirtle in a gym.
5
Do you have any screenshot to prove that?
– Lucas Sant'Anna
Jan 22 '18 at 15:22
3
You probably saw a 9 motivation, which is a decreased CP over the time the Pokemon was in the gym
– Wondercricket
Jan 22 '18 at 15:26
add a comment |
It can have less than 10. I am just seeing a 9 CP squirtle in a gym.
It can have less than 10. I am just seeing a 9 CP squirtle in a gym.
answered Jan 22 '18 at 15:20
YanYan
1
1
5
Do you have any screenshot to prove that?
– Lucas Sant'Anna
Jan 22 '18 at 15:22
3
You probably saw a 9 motivation, which is a decreased CP over the time the Pokemon was in the gym
– Wondercricket
Jan 22 '18 at 15:26
add a comment |
5
Do you have any screenshot to prove that?
– Lucas Sant'Anna
Jan 22 '18 at 15:22
3
You probably saw a 9 motivation, which is a decreased CP over the time the Pokemon was in the gym
– Wondercricket
Jan 22 '18 at 15:26
5
5
Do you have any screenshot to prove that?
– Lucas Sant'Anna
Jan 22 '18 at 15:22
Do you have any screenshot to prove that?
– Lucas Sant'Anna
Jan 22 '18 at 15:22
3
3
You probably saw a 9 motivation, which is a decreased CP over the time the Pokemon was in the gym
– Wondercricket
Jan 22 '18 at 15:26
You probably saw a 9 motivation, which is a decreased CP over the time the Pokemon was in the gym
– Wondercricket
Jan 22 '18 at 15:26
add a comment |
Thanks for contributing an answer to Arqade!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fgaming.stackexchange.com%2fquestions%2f276749%2fcan-a-pok%25c3%25a9mon-have-a-cp-level-of-below-10%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown