File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change 699699 const count = userData . ownedTactics [ k ] || 0 ;
700700 const btn = document . createElement ( 'div' ) ;
701701 btn . className = 'tactic-btn' ;
702+ if ( k === 'Math' ) btn . style . border = '2px solid green' ;
702703 btn . dataset . name = k ;
703704 btn . innerHTML = `<div>${ k } </div><div class="skill-count">${ count } </div>` ;
704705 attachTooltip ( btn , t . desc ) ;
756757 const count = battlePlayerTactics [ k ] || 0 ;
757758 const btn = document . createElement ( 'div' ) ;
758759 btn . className = 'tactic-btn' ;
760+ if ( k === 'Math' ) btn . style . border = '2px solid green' ;
759761 btn . dataset . name = k ;
760762 btn . innerHTML = `<div>${ k } </div><div class="skill-count">${ count } </div>` ;
761763 if ( k !== "Emergency Platform" ) btn . addEventListener ( 'click' , ( ) => useTacticByName ( k ) ) ;
784786 const t = TACTICS [ k ] ;
785787 const row = document . createElement ( 'div' ) ;
786788 row . className = 'shop-item' ;
789+ if ( k === 'Math' ) row . style . border = '2px solid green' ;
787790 row . innerHTML = `<div><b>${ k } </b><div style="font-size:13px;color:var(--muted)">${ t . desc } </div></div>
788791 <div style="display:flex;gap:8px;align-items:center">
789792 <div style="color:var(--muted);font-weight:600">${ userData . profile === 'Villager' ? Math . ceil ( t . price / 2 ) : t . price } </div>
Original file line number Diff line number Diff line change @@ -143,7 +143,7 @@ a: 4x(x - 1)(1 - x)
143143b: (2x^2 - 2x)(2 - 2x)
144144C: -4x(x - 1)^2
145145
146- 4,5: If P(x) = (x^2 + 5x + 6)(x^2 + 3x + 2), coefficient of x^3 = ?
146+ 4,5: What is the coefficient of x^3 in (x^2 + 5x + 6)(x^2 + 3x + 2)?
147147A: 8
148148B: 15
149149c: 21
You can’t perform that action at this time.
0 commit comments