mirror of
https://github.com/chaoticbackup/chaoticbackup.github.io.git
synced 2026-04-22 08:37:22 -05:00
[fix] mugic counter max, attack full art
This commit is contained in:
parent
95e80ae22e
commit
17846e91c4
File diff suppressed because one or more lines are too long
|
|
@ -16,7 +16,7 @@ export default class Attack extends React.Component {
|
|||
|
||||
return(
|
||||
<div style={{textAlign: 'left', display: 'flex'}}>
|
||||
<img className="thumb" style={{float: 'left', width: '100px', height: '98px'}} src={API.base_image + (attack.gsx$thumb||API.thumb_missing)} onClick={() => this.props.setImage(creature.gsx$image)} />
|
||||
<img className="thumb" style={{float: 'left', width: '100px', height: '98px'}} src={API.base_image + (attack.gsx$thumb||API.thumb_missing)} onClick={() => this.props.setImage(attack.gsx$image)} />
|
||||
<div style={{verticalAlign: 'text-top', float: 'left', width: "220px"}}>
|
||||
<span>{attack.gsx$name}</span><br />
|
||||
<span>{API.sets[attack.gsx$set]} | {attack.gsx$rarity}</span><br />
|
||||
|
|
|
|||
|
|
@ -354,7 +354,7 @@ export default class SearchForm extends React.Component {
|
|||
}
|
||||
if (this.mc.max.value > 0 && this.mc.max.value >= this.mc.min.value) {
|
||||
creatureResults = creatureResults.find({'gsx$mugicability': {'$lte': this.mc.max.value}});
|
||||
mugicResults = mugicResults.find({'gsx$cost': {'$gte': this.mc.min.value}});
|
||||
mugicResults = mugicResults.find({'gsx$cost': {'$lte': this.mc.max.value}});
|
||||
}
|
||||
|
||||
if (this.energy.min.value > 0) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user